We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df8823c commit ec62636Copy full SHA for ec62636
.github/workflows/main.yml
@@ -29,6 +29,9 @@ jobs:
29
entrypoint: terraform
30
args: init
31
32
+ - name: Copy useast1 provider fix for terraform validate
33
+ run: cp provider.tf.validate-fix provider.tf
34
+
35
- name: Run a Terraform validate
36
uses: docker://hashicorp/terraform:1.1.7
37
with:
provider.tf
versions.tf
@@ -1,6 +1,9 @@
1
terraform {
2
required_version = ">= 1.1.7"
3
required_providers {
4
- aws = "~> 4.4"
+ aws = {
5
+ version = "~> 4.4"
6
+ configuration_aliases = [aws.useast1]
7
+ }
8
}
9
0 commit comments