Skip to content

Instantly share code, notes, and snippets.

@buzztroll
Created May 5, 2016 20:19
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 buzztroll/6da44b879ee322daac47ced39b966c90 to your computer and use it in GitHub Desktop.
Save buzztroll/6da44b879ee322daac47ced39b966c90 to your computer and use it in GitHub Desktop.
provider "azurerm" {
subscription_id = "xxxxxx"
client_id = "xxxxxx"
client_secret = "xxxxxx"
tenant_id = "xxxxxx"
}
resource "azurerm_resource_group" "blog" {
name = "blogrg"
location = "West US"
}
resource "azurerm_load_balancer" "blog" {
name = "bloglb"
location = "West US"
resource_group_name = "${azurerm_resource_group.blog.name}"
type = "Microsoft.Network/loadBalancers"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment