Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
terraform-aws-vpc-dcec
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
f5labs
terraform-aws-vpc-dcec
Commits
19413a70
Commit
19413a70
authored
3 years ago
by
Michael Kennedy
🎱
Browse files
Options
Downloads
Patches
Plain Diff
hacked vpc_max to use DB for initial management networks
parent
4bff47f9
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
main.tf
+5
-4
5 additions, 4 deletions
main.tf
with
5 additions
and
4 deletions
main.tf
+
5
−
4
View file @
19413a70
...
...
@@ -66,12 +66,13 @@ module "vpc_max" {
source
=
"terraform-aws-modules/vpc/aws"
for_each
=
local
.
zones
name
=
each
.
value
[
"name"
]
cidr
=
each
.
value
[
"cidr"
]
public_subnets
=
each
.
value
[
"public_subnets"
]
name
=
each
.
value
[
"name"
]
cidr
=
each
.
value
[
"cidr"
]
public_subnets
=
try
(
each
.
value
[
"public_subnets"
],
""
)
/* TODO testing passing
private_subnets = each.value["public_subnets"]
database_subnets = each.value["database_subnets"]
*/
enable_dns_hostnames
=
true
enable_dns_support
=
true
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment