Skip to content
Snippets Groups Projects
Commit f76b6b39 authored by Michael Kennedy's avatar Michael Kennedy 🎱
Browse files

working code module, pulling from my vpc module

parent a41d4ac9
No related branches found
No related tags found
No related merge requests found
Pipeline #155 canceled with stages
......@@ -3,7 +3,7 @@
# using directions from https://clouddocs.f5.com/cloud/public/v1/aws/AWS_multiNIC.html
#
module "vpc_min" {
count = var.create_min ? 1 : 0 && var.create_max ? 0 : 1
count = var.create_min && var.create_max > 0 ? 1 : 0
source = "terraform-aws-modules/vpc/aws"
name = format("%s-min-%s", var.tags.prefix, var.tags.random)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment