Skip to content

Commit

Permalink
Updating tier3 variables file (Azure#340)
Browse files Browse the repository at this point in the history
  • Loading branch information
Chambras authored Aug 12, 2021
1 parent da65c1b commit 1c9afe0
Showing 1 changed file with 42 additions and 8 deletions.
50 changes: 42 additions & 8 deletions src/terraform/tier3/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,55 +5,78 @@
#################################

variable "tf_environment" {
description = "The Terraform backend environment e.g. public or usgovernment"
description = "The Terraform backend environment e.g. public or usgovernment. It defults to public."
type = string
default = "public"
}

variable "deploymentname" {
description = "A name for the deployment"
description = "A name for the deployment. It defaults to dev."
type = string
default = "dev"
}

variable "mlz_tenantid" {
description = "The Azure tenant for the deployment"
description = "The Azure Active Directory tenant ID that should be used for the deployment."
type = string
sensitive = true
}

variable "mlz_location" {
description = "The Azure region for most Mission LZ resources"
description = "The Azure region for most Mission LZ resources. It defaults to eastus."
type = string
default = "eastus"
}

variable "mlz_metadatahost" {
description = "The metadata host for the Azure Cloud e.g. management.azure.com"
type = string
default = "management.azure.com"
}

variable "mlz_clientid" {
description = "The account to deploy with"
description = "The Client ID of the Service Principal to deploy with."
type = string
sensitive = true
}

variable "mlz_clientsecret" {
description = "The account to deploy with"
description = "The Client Secret of the Service Principal to deploy with."
type = string
sensitive = true
}

variable "mlz_objectid" {
description = "The account to deploy with"
description = "The object ID of a service principal in the Azure Active Directory tenant."
type = string
sensitive = true
}

#################################
# Hub Configuration
#################################

variable "hub_subid" {
description = "Subscription ID for the deployment"
description = "Subscription ID for the HUB deployment"
type = string
sensitive = true
}

variable "hub_rgname" {
description = "Resource Group for the deployment"
type = string
default = "rg-saca-dev"
}

variable "hub_vnetname" {
description = "Virtual Network Name for the deployment"
type = string
default = "vn-saca-dev"
}

variable "firewall_private_ip" {
description = "Firewall IP to bind network to"
type = string
}

#################################
Expand All @@ -62,29 +85,40 @@ variable "firewall_private_ip" {

variable "tier1_subid" {
description = "Subscription ID for the deployment"
type = string
sensitive = true
}

variable "laws_name" {
description = "Log Analytics Workspace Name for the deployment"
type = string
default = "laws-dev"
}

variable "laws_rgname" {
description = "The RG that laws was deployed to."
type = string
}

#################################
# Tier 3 Configuration
#################################
variable "tier3_subid" {
description = "Subscription ID for the deployment"
type = string
sensitive = true
}

variable "tier3_rgname" {
description = "Resource Group for the deployment"
type = string
default = "rg-t3-dev"
}

variable "tier3_vnetname" {
description = "Virtual Network Name for the deployment"
type = string
default = "vn-t3-dev"
}

variable "tier3_vnet_address_space" {
Expand Down

0 comments on commit 1c9afe0

Please sign in to comment.