added output rg_name

This commit is contained in:
miampf 2024-05-10 11:45:24 +02:00
parent a2c5e10179
commit 532b85a484
No known key found for this signature in database
GPG Key ID: EF039364B5B6886C

View File

@ -9,3 +9,9 @@ output "ssh_private_key" {
sensitive = true
depends_on = [tls_private_key.ssh_key]
}
output "rg_name" {
value = "e2e-mini-${random_string.suffix.result}"
sensitive = false
depends_on = [random_string.suffix]
}