Skip to content

Commit

Permalink
API Warning Removal
Browse files Browse the repository at this point in the history
resolves scarolan#18
  • Loading branch information
v6 authored Feb 12, 2019
1 parent f033617 commit 091c5be
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -103,11 +103,11 @@ resource "azurerm_network_interface" "tf-guide-nic" {
# optionally add a public IP address for Internet-facing applications and
# demo environments like this one.
resource "azurerm_public_ip" "tf-guide-pip" {
name = "${var.prefix}-ip"
location = "${var.location}"
resource_group_name = "${azurerm_resource_group.tf_azure_guide.name}"
public_ip_address_allocation = "Dynamic"
domain_name_label = "${var.hostname}"
name = "${var.prefix}-ip"
location = "${var.location}"
resource_group_name = "${azurerm_resource_group.tf_azure_guide.name}"
allocation_method = "Dynamic"
domain_name_label = "${var.hostname}"
}

# And finally we build our virtual machine. This is a standard Ubuntu instance.
Expand Down

0 comments on commit 091c5be

Please sign in to comment.