Skip to content

Instantly share code, notes, and snippets.

@svenmalvik
Created January 10, 2020 13:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save svenmalvik/7c4eaf0d31da472bf61eb1fa55499767 to your computer and use it in GitHub Desktop.
Save svenmalvik/7c4eaf0d31da472bf61eb1fa55499767 to your computer and use it in GitHub Desktop.
provider "azurerm" {
subscription_id = "YOUR_SUBSCRIPTION_ID"
tenant_id = "YOUR_TENANT_ID"
}
resource "azurerm_resource_group" "rg" {
name = "test-rg"
location = "westeurope"
}
resource "azurerm_api_management" "rg" {
name = "test-apim"
location = "${azurerm_resource_group.rg.location}"
resource_group_name = "${azurerm_resource_group.rg.name}"
publisher_name = "YOUR NAME"
publisher_email = "YOUR_EMAIL"
sku_name = "Developer_1"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment