Added samples for compliance testing with terraform-compliance

This commit is contained in:
Andreas Heumaier
2020-06-11 10:57:02 +02:00
committed by Julien Corioland
parent 3328af0982
commit a935d8bf5e
9 changed files with 234 additions and 0 deletions

View File

@ -0,0 +1,11 @@
resource "random_uuid" "uuid" {}
resource "azurerm_resource_group" "rg" {
name = "rg-hello-tf-${random_uuid.uuid.result}"
location = var.location
tags = {
Environment = "dev"
Application = "Azure Compliance"
}
}