Skip to content

Commit

Permalink
Create a resource group and azure monitor workspace to store k6tester…
Browse files Browse the repository at this point in the history
… metrics
  • Loading branch information
monteiro-renato committed Nov 26, 2024
1 parent f540e17 commit f49a55c
Showing 1 changed file with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
resource "azurerm_resource_group" "lasttest_rg" {
name = "lasttest-rg"
location = "norwayeast"
}

resource "azurerm_monitor_workspace" "lasttest_amw" {
name = "lasttest-amw"
resource_group_name = azurerm_resource_group.lasttest_rg.name
location = azurerm_resource_group.lasttest_rg.location
}

0 comments on commit f49a55c

Please sign in to comment.