github.com/spirius/terraform@v0.10.0-beta2.0.20170714185654-87b2c0cf8fea/examples/azure-openshift-origin/outputs.tf (about)

     1  output "openshift_console_url" {
     2    value = "https://${azurerm_public_ip.openshift_master_pip.fqdn}:8443/console"
     3  }
     4  
     5  output "openshift_master_ssh" {
     6    value = "ssh ${var.admin_username}@${azurerm_public_ip.openshift_master_pip.fqdn} -p 2200"
     7  }
     8  
     9  output "openshift_infra_load_balancer_fqdn" {
    10    value = "${azurerm_public_ip.infra_lb_pip.fqdn}"
    11  }
    12  
    13  output "node_os_storage_account_name" {
    14    value = "${azurerm_storage_account.nodeos_storage_account.name}"
    15  }
    16  
    17  output "node_data_storage_account_name" {
    18    value = "${azurerm_storage_account.nodedata_storage_account.name}"
    19  }
    20  
    21  output "infra_storage_account_name" {
    22    value = "${azurerm_storage_account.infra_storage_account.name}"
    23  }