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 88bb11f commit 25417a6Copy full SHA for 25417a6
main.tf
@@ -35,7 +35,7 @@ data "aws_ec2_instance_type" "arch" {
35
36
module "vpc" {
37
source = "terraform-aws-modules/vpc/aws"
38
- version = "4.0.2"
+ version = "5.1.1"
39
name = format("%s-%s-vpc", var.environment, var.name)
40
cidr = var.vpc_cidr # CIDR FOR VPC
41
azs = [for n in range(0, var.availability_zones) : data.aws_availability_zones.available.names[n]]
modules/vpn/main.tf
@@ -1,5 +1,5 @@
1
resource "aws_eip" "vpn" {
2
- vpc = true
+ domain = "vpc"
3
instance = module.vpn_server.id
4
}
5
0 commit comments