-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
DOM-14267: Update for terraform 0.12 (#3)
* Update for terraform 0.12 * Use 1.33.0 for azurerm
- Loading branch information
1 parent
2378962
commit 747e158
Showing
6 changed files
with
84 additions
and
76 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
output "id" { | ||
description = "The ID of the application gateway" | ||
value = "${azurerm_application_gateway.this.id}" | ||
value = azurerm_application_gateway.this.id | ||
} | ||
|
||
output "backend_address_pool_id" { | ||
description = "The ID of the application gateway backend address pool" | ||
value = "${azurerm_application_gateway.this.backend_address_pool.0.id}" | ||
value = azurerm_application_gateway.this.backend_address_pool[0].id | ||
} | ||
|
||
output "public_ip" { | ||
description = "The public IP of the application gateway" | ||
value = "${azurerm_public_ip.this.ip_address}" | ||
value = azurerm_public_ip.this.ip_address | ||
} |
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
terraform { | ||
required_version = ">= 0.12" | ||
} | ||
|
||
provider "azurerm" { | ||
version = "~> 1.33.0" | ||
} | ||
|
||
provider "random" { | ||
version = "~> 2.1" | ||
} |