Files
example.terraform/tgw-ram-share/account1/network/m.random/main.tf
T

19 lines
262 B
Terraform

resource "random_string" "string" {
length = 4
special = false
}
resource "random_integer" "number" {
min = 1000
max = 9999
}
output "string" {
value = random_string.string.result
}
output "number" {
value = random_integer.number.result
}