Skip to content

Commit 298affd

Browse files
committed
commit message
1 parent 6e71080 commit 298affd

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

example.tf

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
resource "azurerm_resource_group" "example" {
2+
name = "example-resources"
3+
location = "West Europe"
4+
tags = {
5+
yor_name = "example"
6+
yor_trace = "f9bc7151-2e2d-4ded-9385-613ec6adcf3c"
7+
}
8+
}
9+
10+
resource "azurerm_storage_account" "example" {
11+
name = "storageaccountname"
12+
resource_group_name = azurerm_resource_group.example.name
13+
location = azurerm_resource_group.example.location
14+
account_tier = "Standard"
15+
account_replication_type = "GRS"
16+
17+
tags = {
18+
environment = "staging"
19+
yor_name = "example"
20+
yor_trace = "e1439513-b7ed-477b-88c1-cac4ffec5dd6"
21+
}
22+
}

0 commit comments

Comments
 (0)