File tree 8 files changed +11
-9
lines changed
8 files changed +11
-9
lines changed Original file line number Diff line number Diff line change @@ -160,13 +160,13 @@ The following combinations are supported to conditionally create resources:
160
160
| Name | Version |
161
161
| ------| ---------|
162
162
| <a name =" requirement_terraform " ></a > [ terraform] ( #requirement\_ terraform ) | >= 0.13.1 |
163
- | <a name =" requirement_aws " ></a > [ aws] ( #requirement\_ aws ) | >= 3.51 |
163
+ | <a name =" requirement_aws " ></a > [ aws] ( #requirement\_ aws ) | >= 3.72 |
164
164
165
165
## Providers
166
166
167
167
| Name | Version |
168
168
| ------| ---------|
169
- | <a name =" provider_aws " ></a > [ aws] ( #provider\_ aws ) | >= 3.51 |
169
+ | <a name =" provider_aws " ></a > [ aws] ( #provider\_ aws ) | >= 3.72 |
170
170
171
171
## Modules
172
172
Original file line number Diff line number Diff line change @@ -20,13 +20,13 @@ Note that this example may create resources which can cost money. Run `terraform
20
20
| Name | Version |
21
21
| ------| ---------|
22
22
| <a name =" requirement_terraform " ></a > [ terraform] ( #requirement\_ terraform ) | >= 0.13.1 |
23
- | <a name =" requirement_aws " ></a > [ aws] ( #requirement\_ aws ) | >= 3.51 |
23
+ | <a name =" requirement_aws " ></a > [ aws] ( #requirement\_ aws ) | >= 3.72 |
24
24
25
25
## Providers
26
26
27
27
| Name | Version |
28
28
| ------| ---------|
29
- | <a name =" provider_aws " ></a > [ aws] ( #provider\_ aws ) | >= 3.51 |
29
+ | <a name =" provider_aws " ></a > [ aws] ( #provider\_ aws ) | >= 3.72 |
30
30
31
31
## Modules
32
32
Original file line number Diff line number Diff line change @@ -169,6 +169,7 @@ module "ec2_metadata_options" {
169
169
http_endpoint = " enabled"
170
170
http_tokens = " required"
171
171
http_put_response_hop_limit = 8
172
+ instance_metadata_tags = " enabled"
172
173
}
173
174
174
175
tags = local. tags
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ terraform {
4
4
required_providers {
5
5
aws = {
6
6
source = " hashicorp/aws"
7
- version = " >= 3.51 "
7
+ version = " >= 3.72 "
8
8
}
9
9
}
10
10
}
Original file line number Diff line number Diff line change @@ -22,13 +22,13 @@ Note that this example may create resources which can cost money. Run `terraform
22
22
| Name | Version |
23
23
| ------| ---------|
24
24
| <a name =" requirement_terraform " ></a > [ terraform] ( #requirement\_ terraform ) | >= 0.13.1 |
25
- | <a name =" requirement_aws " ></a > [ aws] ( #requirement\_ aws ) | >= 3.51 |
25
+ | <a name =" requirement_aws " ></a > [ aws] ( #requirement\_ aws ) | >= 3.72 |
26
26
27
27
## Providers
28
28
29
29
| Name | Version |
30
30
| ------| ---------|
31
- | <a name =" provider_aws " ></a > [ aws] ( #provider\_ aws ) | >= 3.51 |
31
+ | <a name =" provider_aws " ></a > [ aws] ( #provider\_ aws ) | >= 3.72 |
32
32
33
33
## Modules
34
34
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ terraform {
4
4
required_providers {
5
5
aws = {
6
6
source = " hashicorp/aws"
7
- version = " >= 3.51 "
7
+ version = " >= 3.72 "
8
8
}
9
9
}
10
10
}
Original file line number Diff line number Diff line change @@ -88,6 +88,7 @@ resource "aws_instance" "this" {
88
88
http_endpoint = lookup (metadata_options. value , " http_endpoint" , " enabled" )
89
89
http_tokens = lookup (metadata_options. value , " http_tokens" , " optional" )
90
90
http_put_response_hop_limit = lookup (metadata_options. value , " http_put_response_hop_limit" , " 1" )
91
+ instance_metadata_tags = lookup (metadata_options. value , " instance_metadata_tags" , null )
91
92
}
92
93
}
93
94
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ terraform {
4
4
required_providers {
5
5
aws = {
6
6
source = " hashicorp/aws"
7
- version = " >= 3.51 "
7
+ version = " >= 3.72 "
8
8
}
9
9
}
10
10
}
You can’t perform that action at this time.
0 commit comments