Created
January 10, 2020 13:44
-
-
Save svenmalvik/7c4eaf0d31da472bf61eb1fa55499767 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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