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 27e6f54 commit 9c0295dCopy full SHA for 9c0295d
providers.tf
@@ -2,7 +2,7 @@ terraform {
2
required_providers {
3
aws = {
4
source = "hashicorp/aws"
5
- version = "~> 5.0"
+ version = ">= 5.100"
6
}
7
8
vpc.tf
@@ -1,5 +1,6 @@
1
module "vpc" {
source = "terraform-aws-modules/vpc/aws"
+ version = "5.21.0"
name = "terraform-vpc"
cidr = "10.0.0.0/16"
azs = ["${var.aws_region}a", "${var.aws_region}b", "${var.aws_region}c"]
0 commit comments