File tree Expand file tree Collapse file tree 4 files changed +15
-5
lines changed Expand file tree Collapse file tree 4 files changed +15
-5
lines changed Original file line number Diff line number Diff line change 2929 entrypoint : terraform
3030 args : init
3131
32+ - name : Copy useast1 provider fix for terraform validate
33+ run : cp provider.tf.validate-fix provider.tf
34+
3235 - name : Run a Terraform validate
3336 uses : docker://hashicorp/terraform:1.1.7
3437 with :
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ # This is not used, it's just here to allow `terraform validate`
2+ # to succeed in CI
3+ # https://github.com/hashicorp/terraform/issues/28490
4+
5+ provider "aws" {
6+ region = "us-east-1"
7+ alias = "useast1"
8+ }
Original file line number Diff line number Diff line change 11terraform {
22 required_version = " >= 1.1.7"
33 required_providers {
4- aws = " ~> 4.4"
4+ aws = {
5+ version = " ~> 4.4"
6+ configuration_aliases = [aws.useast1]
7+ }
58 }
69}
You can’t perform that action at this time.
0 commit comments