main.tf 194 B

123456789
  1. provider "aws" {
  2. region = var.region
  3. profile = var.profile
  4. }
  5. # Allow us to disable the private networks
  6. locals {
  7. count_private = (var.enable-private == true ? length(var.vpc-azs) : 0)
  8. }