terraform: valid Azure attestation provider name (#1465)

Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
This commit is contained in:
Paul Meyer 2023-03-20 12:53:00 -04:00 committed by GitHub
parent 1b12147d83
commit 05f6d1dc65
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -42,8 +42,9 @@ resource "random_password" "initSecret" {
}
resource "azurerm_attestation_provider" "attestation_provider" {
count = var.create_maa ? 1 : 0
name = format("%sap", var.name)
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]/", ""))
resource_group_name = var.resource_group
location = var.location
}