Skip to content

Commit

Permalink
fix: lock the AWS provider
Browse files Browse the repository at this point in the history
  • Loading branch information
alikhajeh1 committed Jul 26, 2021
1 parent 595e9a3 commit 1640efb
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions sample1/main.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
// AWS provider is locked due to https://github.com/hashicorp/terraform-provider-aws/issues/20287
terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "3.50.0"
}
}
}

provider "aws" {
region = "us-east-1" # <<<<< Try changing this to eu-west-1 to compare the costs
skip_credentials_validation = true
Expand Down

0 comments on commit 1640efb

Please sign in to comment.