File tree 3 files changed +10
-10
lines changed
3 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -145,13 +145,13 @@ No Modules.
145
145
146
146
| Name |
147
147
| ------|
148
- | [ aws_iam_policy_attachment ] ( https://registry.terraform.io/providers/hashicorp/aws/3.27 /docs/resources/iam_policy_attachment ) |
149
- | [ aws_iam_policy_document ] ( https://registry.terraform.io/providers/hashicorp/aws/3.27 /docs/data-sources/iam_policy_document ) |
150
- | [ aws_iam_policy ] ( https://registry.terraform.io/providers/hashicorp/aws/3.27 /docs/resources/iam_policy ) |
151
- | [ aws_iam_role_policy_attachment ] ( https://registry.terraform.io/providers/hashicorp/aws/3.27 /docs/resources/iam_role_policy_attachment ) |
152
- | [ aws_iam_role ] ( https://registry.terraform.io/providers/hashicorp/aws/3.27 /docs/resources/iam_role ) |
153
- | [ aws_region] ( https://registry.terraform.io/providers/hashicorp/aws/3.27 /docs/data-sources/region ) |
154
- | [ aws_sfn_state_machine] ( https://registry.terraform.io/providers/hashicorp/aws/3.27 /docs/resources/sfn_state_machine ) |
148
+ | [ aws_iam_policy ] ( https://registry.terraform.io/providers/hashicorp/aws/latest /docs/resources/iam_policy ) |
149
+ | [ aws_iam_policy_attachment ] ( https://registry.terraform.io/providers/hashicorp/aws/latest /docs/resources/iam_policy_attachment ) |
150
+ | [ aws_iam_policy_document ] ( https://registry.terraform.io/providers/hashicorp/aws/latest /docs/data-sources/iam_policy_document ) |
151
+ | [ aws_iam_role ] ( https://registry.terraform.io/providers/hashicorp/aws/latest /docs/resources/iam_role ) |
152
+ | [ aws_iam_role_policy_attachment ] ( https://registry.terraform.io/providers/hashicorp/aws/latest /docs/resources/iam_role_policy_attachment ) |
153
+ | [ aws_region] ( https://registry.terraform.io/providers/hashicorp/aws/latest /docs/data-sources/region ) |
154
+ | [ aws_sfn_state_machine] ( https://registry.terraform.io/providers/hashicorp/aws/latest /docs/resources/sfn_state_machine ) |
155
155
156
156
## Inputs
157
157
Original file line number Diff line number Diff line change @@ -44,8 +44,8 @@ Note that this example may create resources which cost money. Run `terraform des
44
44
45
45
| Name |
46
46
| ------|
47
- | [ aws_sqs_queue] ( https://registry.terraform.io/providers/hashicorp/aws/3.27 /docs/resources/sqs_queue ) |
48
- | [ random_pet] ( https://registry.terraform.io/providers/hashicorp/random/2 /docs/resources/pet ) |
47
+ | [ aws_sqs_queue] ( https://registry.terraform.io/providers/hashicorp/aws/latest /docs/resources/sqs_queue ) |
48
+ | [ random_pet] ( https://registry.terraform.io/providers/hashicorp/random/latest /docs/resources/pet ) |
49
49
50
50
## Inputs
51
51
Original file line number Diff line number Diff line change 1
1
locals {
2
- create_role = var. create && var. create_role && ! var. use_existing_role
2
+ create_role = var. create && var. create_role && ! var. use_existing_role
3
3
aws_region = local. create_role && var. aws_region_assume_role == " " ? data. aws_region . current [0 ]. name : var. aws_region_assume_role
4
4
5
5
role_name = local. create_role ? coalesce (var. role_name , var. name ) : null
You can’t perform that action at this time.
0 commit comments