mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-05-19 22:50:34 -04:00
terraform: unique Azure attestation provider name (#1472)
Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
This commit is contained in:
parent
3fceb2207d
commit
f638812143
1 changed files with 1 additions and 1 deletions
|
@ -44,7 +44,7 @@ resource "random_password" "initSecret" {
|
|||
resource "azurerm_attestation_provider" "attestation_provider" {
|
||||
count = var.create_maa ? 1 : 0
|
||||
# name must be between 3 and 24 characters in length and use numbers and lower-case letters only.
|
||||
name = format("%sap", replace(var.name, "/[^a-z0-9]/", ""))
|
||||
name = format("constell%s", local.uid)
|
||||
resource_group_name = var.resource_group
|
||||
location = var.location
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue