diff --git a/terraform/azure_fxci/resource_groups.tf b/terraform/azure_fxci/resource_groups.tf index bf994f0b..5e85b283 100644 --- a/terraform/azure_fxci/resource_groups.tf +++ b/terraform/azure_fxci/resource_groups.tf @@ -19,3 +19,19 @@ resource "azurerm_resource_group" "windows7" { }) ) } + +resource "azurerm_resource_group" "ronin_puppet_test_kitchen" { + name = "ronin-puppet-test-kitchen" + location = "East US 2" + + tags = { + "Name" = "ronin-puppet-test-kitchen" + "owner" = "relops@mozilla.com" + "owner_email" = "mcornmesser@mozilla.com" + "production_state" = "production" + "project_name" = "azure_fxci" + "provisioner" = "test-kitchen-azurerm" + "source_repo_url" = "https://github.com/mozilla-platform-ops/relops_infra_as_code" + "terraform" = "true" + } +}