File tree Expand file tree Collapse file tree 3 files changed +17
-0
lines changed Expand file tree Collapse file tree 3 files changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -32,6 +32,11 @@ resource "aws_instance" "controller" {
32
32
Type = local.boundary_cluster_tag,
33
33
},
34
34
)
35
+
36
+ metadata_options {
37
+ http_endpoint = " enabled"
38
+ instance_metadata_tags = " enabled"
39
+ }
35
40
}
36
41
37
42
resource "aws_instance" "worker" {
@@ -60,6 +65,10 @@ resource "aws_instance" "worker" {
60
65
Type = local.boundary_cluster_tag,
61
66
},
62
67
)
68
+ metadata_options {
69
+ http_endpoint = " enabled"
70
+ instance_metadata_tags = " enabled"
71
+ }
63
72
}
64
73
65
74
resource "enos_bundle_install" "controller" {
Original file line number Diff line number Diff line change @@ -133,6 +133,10 @@ resource "aws_instance" "target" {
133
133
root_block_device {
134
134
encrypted = true
135
135
}
136
+ metadata_options {
137
+ http_endpoint = " enabled"
138
+ instance_metadata_tags = " enabled"
139
+ }
136
140
}
137
141
138
142
resource "enos_remote_exec" "wait" {
Original file line number Diff line number Diff line change @@ -17,6 +17,10 @@ resource "aws_instance" "vault_instance" {
17
17
Type = local.vault_cluster_tag
18
18
},
19
19
)
20
+ metadata_options {
21
+ http_endpoint = " enabled"
22
+ instance_metadata_tags = " enabled"
23
+ }
20
24
}
21
25
22
26
resource "enos_remote_exec" "install_dependencies" {
You can’t perform that action at this time.
0 commit comments