regulatory-compliance-initi.../terraform/variables.tf

60 строки
1.3 KiB
Terraform
Исходник Постоянная ссылка Обычный вид История

2021-11-25 06:38:08 +03:00
# Use variables to customise the deployment
variable "root_id" {
type = string
default = "my-bank"
2021-11-25 06:38:08 +03:00
}
variable "root_name" {
type = string
default = "Bank Management Group"
2021-11-25 06:38:08 +03:00
}
variable "deploy_management_resources" {
type = bool
default = true
}
variable "log_retention_in_days" {
type = number
default = 50
}
variable "security_alerts_email_address" {
type = string
default = "my_valid_security_contact@replace_me" # Replace this value with your own email address.
}
variable "management_resources_location" {
type = string
2022-01-27 05:45:39 +03:00
default = "southeastasia"
2021-11-25 06:38:08 +03:00
}
variable "management_resources_tags" {
type = map(string)
default = {
demo_type = "deploy_management_resources_custom"
}
}
2022-01-27 05:45:39 +03:00
2022-02-12 04:02:08 +03:00
# Connetivity Resouces Use variables to customize the deployment
variable "connectivity_resources_location" {
type = string
default = "southeastasia"
}
variable "connectivity_resources_tags" {
type = map(string)
default = {
demo_type = "deploy_connectivity_resources_custom"
}
}
variable "deploy_connectivity_resources" {
type = bool
default = true
}
2022-01-27 05:45:39 +03:00
2021-11-25 06:38:08 +03:00
# variable "library_path" {
# type = string
# description = "If specified, sets the path to a custom library folder for archetype artefacts."
# default = "${path.root}/lib"
# }