Skip to content

Commit

Permalink
Merge pull request #3 from DJBerwick/development
Browse files Browse the repository at this point in the history
Development
  • Loading branch information
DJBerwick authored Dec 7, 2023
2 parents 4e4c729 + 2651b2b commit 5977942
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 7 deletions.
1 change: 1 addition & 0 deletions resources.tf
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ locals {
common_tags = {
Environment = var.environment
BillingCode = var.billing_code
Workspace = terraform.workspace
}
}

Expand Down
7 changes: 0 additions & 7 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,11 @@ variable "region" {
variable "prefix" {
type = string
description = "(Optional) Prefix to use for all resources in this module. Default: globo-dev"
default = "globo-dev"
}

variable "environment" {
type = string
description = "(Optional) Environment of all resources"
default = "development"
}

variable "billing_code" {
Expand All @@ -28,15 +26,10 @@ variable "billing_code" {
variable "cidr_block" {
type = string
description = "(Optional) The CIDR block for the VPC. Default:10.42.0.0/16"
default = "10.42.0.0/16"
}

variable "public_subnets" {
type = map(string)
description = "(Optional) Map of public subnets to create with CIDR blocks. Key will be used as subnet name with prefix. Default: {subnet-1 ="
default = {
public-1 = "10.42.10.0/24"
public-2 = "10.42.11.0/24"
}
}

0 comments on commit 5977942

Please sign in to comment.