Skip to content

Commit

Permalink
Pass tag parameters to the resources that support tags (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
horsey authored and dtzar committed Feb 5, 2018
1 parent 9219dbf commit 4d642d6
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,14 @@ resource "azurerm_public_ip" "azlb" {
location = "${var.location}"
resource_group_name = "${azurerm_resource_group.azlb.name}"
public_ip_address_allocation = "${var.public_ip_address_allocation}"
tags = "${var.tags}"
}

resource "azurerm_lb" "azlb" {
name = "${var.prefix}-lb"
resource_group_name = "${azurerm_resource_group.azlb.name}"
location = "${var.location}"
tags = "${var.tags}"

frontend_ip_configuration {
name = "${var.frontend_name}"
Expand Down

0 comments on commit 4d642d6

Please sign in to comment.