Added samples for compliance testing with terraform-compliance
This commit is contained in:

committed by
Julien Corioland

parent
3328af0982
commit
a935d8bf5e
11
samples/compliance-testing/src/main.tf
Normal file
11
samples/compliance-testing/src/main.tf
Normal 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"
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user