@@ -43,31 +43,15 @@ variable "external_domain" {
43
43
description = " The domain prefix that will be used to access the hydra node."
44
44
}
45
45
46
- variable "operator_image " {
46
+ variable "image " {
47
47
type = string
48
- description = " The image to use for the operator component."
49
48
}
50
49
51
50
variable "hydra_node_image" {
52
51
type = string
53
52
description = " The Docker image to use for the Hydra node component."
54
53
}
55
54
56
- variable "sidecar_image" {
57
- type = string
58
- description = " The Docker image to use for the sidecar component of the Hydra node."
59
- }
60
-
61
- variable "open_head_image" {
62
- type = string
63
- description = " The Docker image to use for the open head component of the Hydra node."
64
- }
65
-
66
- variable "control_plane_image" {
67
- type = string
68
- description = " The Docker image to use for the control plane component of the Hydra node."
69
- }
70
-
71
55
variable "hydra_scripts_tx_id" {
72
56
type = string
73
57
description = " The transaction ID of the Hydra scripts."
@@ -113,11 +97,11 @@ module "stage2" {
113
97
114
98
namespace = local. namespace
115
99
external_domain = var. external_domain
116
- operator_image = var. operator_image
117
100
hydra_node_image = var. hydra_node_image
118
- sidecar_image = var. sidecar_image
119
- open_head_image = var. open_head_image
120
- control_plane_image = var. control_plane_image
101
+ operator_image = var. image
102
+ sidecar_image = var. image
103
+ open_head_image = var. image
104
+ control_plane_image = var. image
121
105
blockfrost_key = var. blockfrost_key
122
106
admin_addr = var. admin_addr
123
107
dmtr_project_id = var. dmtr_project_id
0 commit comments