Julien Corioland 3328af0982
Add Sample: Integration Testing (#43)
add samples for integration testing
2020-06-11 10:35:53 +02:00

6 lines
156 B
HCL

resource "random_uuid" "uuid" {}
resource "azurerm_resource_group" "rg" {
name = "rg-hello-tf-${random_uuid.uuid.result}"
location = var.location
}