mirror of
https://github.com/bigchaindb/bigchaindb.git
synced 2024-10-13 13:34:05 +00:00
11 lines
355 B
HCL
11 lines
355 B
HCL
resource "azurerm_public_ip" "bdb_node_IP_1" {
|
|
name = "bdb_node_IP_1"
|
|
location = "${var.location}"
|
|
resource_group_name = "${azurerm_resource_group.bdb_node_RG.name}"
|
|
public_ip_address_allocation = "static"
|
|
}
|
|
|
|
output "bdb_node_IP_1" {
|
|
value = "${azurerm_public_ip.bdb_node_IP_1.ip_address}"
|
|
}
|