Skip to content

Commit

Permalink
feat: create a resource group and azure monitor workspace to store k6…
Browse files Browse the repository at this point in the history
…tester metrics (#1138)
  • Loading branch information
monteiro-renato authored Nov 27, 2024
1 parent f540e17 commit be26ac7
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 be26ac7

Please sign in to comment.