constellation/dev-docs/howto/vpn/on-prem-terraform/variables.tf
renovate[bot] a295ecaffb
cli: add --subscriptionID flag for iam create azure command (#3328)
* deps: update Terraform azurerm to v4
* Set Azure subscription ID when applying Terraform files
* Upgrade azurerm to v4.1.0
* Mark subscriptionID flag as not required
* deps: tidy all modules

---------

Signed-off-by: Daniel Weiße <dw@edgeless.systems>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Daniel Weiße <dw@edgeless.systems>
Co-authored-by: edgelessci <edgelessci@users.noreply.github.com>
2024-09-17 12:30:22 +02:00

39 lines
964 B
HCL

variable "subscription_id" {
type = string
description = "Azure subscription ID. This can also be sourced from the ARM_SUBSCRIPTION_ID environment variable: https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs#subscription_id"
default = ""
}
variable "resource_group_location" {
type = string
default = "westeurope"
description = "Location of the resource group."
}
variable "name_prefix" {
type = string
default = "vpn-test"
}
variable "remote_addr" {
type = string
description = "The public IP address of the remote host."
}
variable "ike_psk" {
type = string
description = "The IKE pre-shared key."
}
variable "local_ts" {
type = string
description = "The local traffic selector."
default = "10.99.0.0/16"
}
variable "remote_ts" {
type = list(string)
description = "The remote traffic selector."
default = ["10.10.0.0/16", "10.96.0.0/12"]
}