mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-01-23 13:51:06 -05:00
a295ecaffb
* 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>
21 lines
658 B
HCL
21 lines
658 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_name" {
|
|
type = string
|
|
description = "Name for the resource group the cluster should reside in."
|
|
}
|
|
|
|
variable "service_principal_name" {
|
|
type = string
|
|
description = "Name for the service principal used within the cluster."
|
|
}
|
|
|
|
variable "location" {
|
|
type = string
|
|
description = "Azure location the cluster should reside in."
|
|
}
|