Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
resource "azurerm_bastion_host" "bastion" {
name = var.bastion_host_name
location = data.azurerm_resource_group.rg.location
resource_group_name = data.azurerm_resource_group.rg.name
ip_configuration {
name = "ip_configuration"
subnet_id = data.azurerm_subnet.subnet.id
public_ip_address_id = data.azurerm_public_ip.pip.id
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment