-
Notifications
You must be signed in to change notification settings - Fork 661
chore: Update CI and examples for Terraform #1619
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
252fc0a
fbf8eaf
20a21d3
e63eccb
68da002
07fa3ce
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,21 @@ | ||
module "vpc" { | ||
source = "git::https://github.com/philips-software/terraform-aws-vpc.git?ref=2.2.0" | ||
source = "terraform-aws-modules/vpc/aws" | ||
version = "3.11.2" | ||
|
||
name = "vpc-${local.environment}" | ||
cidr = "10.0.0.0/16" | ||
|
||
azs = ["${local.aws_region}a", "${local.aws_region}b", "${local.aws_region}c"] | ||
private_subnets = ["10.0.1.0/24", "10.0.2.0/24", "10.0.3.0/24"] | ||
public_subnets = ["10.0.101.0/24", "10.0.102.0/24", "10.0.103.0/24"] | ||
|
||
enable_dns_hostnames = true | ||
enable_nat_gateway = true | ||
map_public_ip_on_launch = false | ||
single_nat_gateway = true | ||
|
||
tags = { | ||
Environment = local.environment | ||
} | ||
|
||
environment = local.environment | ||
aws_region = local.aws_region | ||
create_private_hosted_zone = false | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,21 @@ | ||
module "vpc" { | ||
source = "git::https://github.com/philips-software/terraform-aws-vpc.git?ref=2.2.0" | ||
source = "terraform-aws-modules/vpc/aws" | ||
version = "3.11.2" | ||
|
||
name = "vpc-${local.environment}" | ||
cidr = "10.0.0.0/16" | ||
|
||
azs = ["${local.aws_region}a", "${local.aws_region}b", "${local.aws_region}c"] | ||
private_subnets = ["10.0.1.0/24", "10.0.2.0/24", "10.0.3.0/24"] | ||
public_subnets = ["10.0.101.0/24", "10.0.102.0/24", "10.0.103.0/24"] | ||
|
||
enable_dns_hostnames = true | ||
enable_nat_gateway = true | ||
map_public_ip_on_launch = false | ||
single_nat_gateway = true | ||
|
||
tags = { | ||
Environment = local.environment | ||
} | ||
|
||
environment = local.environment | ||
aws_region = local.aws_region | ||
create_private_hosted_zone = false | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,21 @@ | ||
module "vpc" { | ||
source = "git::https://github.com/philips-software/terraform-aws-vpc.git?ref=2.1.0" | ||
source = "terraform-aws-modules/vpc/aws" | ||
version = "3.11.2" | ||
|
||
name = "vpc-${local.environment}" | ||
cidr = "10.0.0.0/16" | ||
|
||
azs = ["${local.aws_region}a", "${local.aws_region}b", "${local.aws_region}c"] | ||
private_subnets = ["10.0.1.0/24", "10.0.2.0/24", "10.0.3.0/24"] | ||
public_subnets = ["10.0.101.0/24", "10.0.102.0/24", "10.0.103.0/24"] | ||
|
||
enable_dns_hostnames = true | ||
enable_nat_gateway = true | ||
map_public_ip_on_launch = false | ||
single_nat_gateway = true | ||
|
||
tags = { | ||
Environment = local.environment | ||
} | ||
|
||
environment = local.environment | ||
aws_region = local.aws_region | ||
create_private_hosted_zone = false | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,21 @@ | ||
module "vpc" { | ||
source = "git::https://github.com/philips-software/terraform-aws-vpc.git?ref=2.2.0" | ||
source = "terraform-aws-modules/vpc/aws" | ||
version = "3.11.2" | ||
|
||
name = "vpc-${local.environment}" | ||
cidr = "10.0.0.0/16" | ||
|
||
azs = ["${var.aws_region}a", "${var.aws_region}b", "${var.aws_region}c"] | ||
private_subnets = ["10.0.1.0/24", "10.0.2.0/24", "10.0.3.0/24"] | ||
public_subnets = ["10.0.101.0/24", "10.0.102.0/24", "10.0.103.0/24"] | ||
|
||
enable_dns_hostnames = true | ||
enable_nat_gateway = true | ||
map_public_ip_on_launch = false | ||
single_nat_gateway = true | ||
|
||
tags = { | ||
Environment = local.environment | ||
} | ||
|
||
environment = local.environment | ||
aws_region = var.aws_region | ||
create_private_hosted_zone = false | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
terraform { | ||
required_providers { | ||
aws = { | ||
source = "hashicorp/aws" | ||
version = ">= 3.71" | ||
} | ||
local = { | ||
source = "hashicorp/local" | ||
} | ||
random = { | ||
source = "hashicorp/random" | ||
} | ||
} | ||
required_version = ">= 1" | ||
} |
Uh oh!
There was an error while loading. Please reload this page.