@@ -32,6 +32,7 @@ locals {
32
32
33
33
oci_base_bastion = {
34
34
availability_domains = var.availability_domains[" bastion" ]
35
+ availability_domain = var.availability_domains[" bastion" ]
35
36
bastion_enabled = var.bastion_enabled
36
37
bastion_access = var.bastion_access
37
38
bastion_image_id = var.bastion_image_id
@@ -45,13 +46,16 @@ locals {
45
46
notification_topic = var.bastion_notification_topic
46
47
ssh_private_key_path = var.ssh_private_key_path
47
48
ssh_public_key_path = var.ssh_public_key_path
48
- tags = var.tags[" bastion" ]
49
49
timezone = var.bastion_timezone
50
50
use_autonomous = var.bastion_use_autonomous
51
+ tags = {
52
+ role = " bastion"
53
+ }
51
54
}
52
55
53
56
oci_base_operator = {
54
57
availability_domains = var.availability_domains[" operator" ]
58
+ availability_domain = var.availability_domains[" operator" ]
55
59
operator_enabled = var.operator_enabled
56
60
operator_image_id = " NONE"
57
61
operator_shape = var.operator_shape
@@ -65,8 +69,10 @@ locals {
65
69
notification_topic = var.operator_notification_topic
66
70
ssh_private_key_path = var.ssh_private_key_path
67
71
ssh_public_key_path = var.ssh_public_key_path
68
- tags = var.tags[" operator" ]
69
72
timezone = var.operator_timezone
73
+ tags = {
74
+ role = " operator"
75
+ }
70
76
}
71
77
72
78
db_identity = {
0 commit comments