Skip to content

Commit

Permalink
lock provider plugin source
Browse files Browse the repository at this point in the history
  • Loading branch information
robmorgan committed Sep 24, 2020
1 parent c4636f2 commit 0258e4e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 4 additions & 1 deletion asg-elb-service/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,10 @@ terraform {

# Live modules pin exact provider version; generic modules let consumers pin the version.
required_providers {
aws = "= 3.7.0"
aws = {
source = "hashicorp/aws"
version = "= 3.7.0"
}
}
}

Expand Down
5 changes: 4 additions & 1 deletion mysql/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,10 @@ terraform {

# Live modules pin exact provider version; generic modules let consumers pin the version.
required_providers {
aws = "= 3.7.0"
aws = {
source = "hashicorp/aws"
version = "= 3.7.0"
}
}
}

Expand Down

0 comments on commit 0258e4e

Please sign in to comment.