Commit 5d3e00c7 authored by Michael Kennedy's avatar Michael Kennedy 🎱
Browse files

updates

parent 857c81bc
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -37,7 +37,7 @@ module "vpc" {
  tags = {
    Name        = format("%s-vpc-%s", var.prefix, random_id.id.hex)
    Terraform   = "true"
    Environment = "dev"
    Environment = var.Environment
  }
}

+0 −3
Original line number Diff line number Diff line
@@ -15,9 +15,6 @@ module "vpc" {
  azs            = ["ap-southeast-2a", "ap-southeast-2b", "ap-southeast-2c"]
  public_subnets = ["10.4.0.0/27", "10.4.0.32/27", "10.4.0.64/27"]

  enable_nat_gateway = false
  enable_vpn_gateway = false

  tags = {
    Terraform   = "true"
    Environment = "${var.environment}"
+4 −12
Original line number Diff line number Diff line
variable "parent-profile" {
  description = "AWS Parent Profile to configure for."
variable "cidr" {
  description = "VPC CIDR for Inspection gateway."
}

variable "parent-account-id" {
  description = "AWS Parent Number to configure for."
}

variable "child-profile" {
  description = "Account name to configure Cloudtrail for."
variable "secops-profile" {
  description = "Account name to configure Environment for."
}

variable "child-account-id" {
@@ -71,11 +71,3 @@ variable "nlb_svc_path" {
  description = "Listener path?"
  default     = "/"
}

variable "static_eips" {
  default = {
    "0" = "eipalloc-0ef2fcf22cf8088ba"
    "1" = "eipalloc-0ba8e5292d169d29a"
    "2" = "eipalloc-08a3fcd57b5339ce3"
  }
}