Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updating tier3 variables file #340

Merged
merged 2 commits into from
Aug 12, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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