Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
dunefro committed Mar 16, 2024
1 parent acbe0d4 commit fa9e1ac
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions output.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,38 +3,38 @@
##################################################################################

output "truefoundry_blob_storage_account_id" {
value = var.feature_blob_storage_enabled ? azurerm_storage_account.truefoundry_platform_storage_account[0].id : ""
value = var.feature_blob_storage_enabled ? azurerm_storage_account.truefoundry_platform_storage_account[0].id : ""
description = "Storage account id"
}

output "truefoundry_blob_storage_account_primary_location" {
value = var.feature_blob_storage_enabled ? azurerm_storage_account.truefoundry_platform_storage_account[0].primary_location : ""
value = var.feature_blob_storage_enabled ? azurerm_storage_account.truefoundry_platform_storage_account[0].primary_location : ""
description = "Storage account primary location"
}

output "truefoundry_blob_storage_account_primary_blob_host" {
value = var.feature_blob_storage_enabled ? azurerm_storage_account.truefoundry_platform_storage_account[0].primary_blob_host : ""
value = var.feature_blob_storage_enabled ? azurerm_storage_account.truefoundry_platform_storage_account[0].primary_blob_host : ""
description = "Storage account primary blob host"
}

output "truefoundry_blob_storage_account_primary_web_host" {
value = var.feature_blob_storage_enabled ? azurerm_storage_account.truefoundry_platform_storage_account[0].primary_web_host : ""
value = var.feature_blob_storage_enabled ? azurerm_storage_account.truefoundry_platform_storage_account[0].primary_web_host : ""
description = "Storage account primary web host url"
}

output "truefoundry_blob_storage_account_primary_connection_string" {
value = var.feature_blob_storage_enabled ? azurerm_storage_account.truefoundry_platform_storage_account[0].primary_connection_string : ""
sensitive = true
value = var.feature_blob_storage_enabled ? azurerm_storage_account.truefoundry_platform_storage_account[0].primary_connection_string : ""
sensitive = true
description = "Storage account primary connection string"
}

output "truefoundry_blob_container_id" {
value = var.feature_blob_storage_enabled ? azurerm_storage_container.truefoundry_platform_container[0].id : ""
value = var.feature_blob_storage_enabled ? azurerm_storage_container.truefoundry_platform_container[0].id : ""
description = "Storage account container ID"
}

output "truefoundry_blob_storage_root_url" {
value = var.feature_blob_storage_enabled ? "https://${local.storage_account_name}.blob.core.windows.net/${local.container_name}/" : ""
value = var.feature_blob_storage_enabled ? "https://${local.storage_account_name}.blob.core.windows.net/${local.container_name}/" : ""
description = "Storage account root URL for blob storage"
}

Expand All @@ -43,23 +43,23 @@ output "truefoundry_blob_storage_root_url" {
##################################################################################

output "truefoundry_container_registry_id" {
value = var.feature_container_registry_enabled ? azurerm_container_registry.truefoundry_container_registry[0].id : ""
value = var.feature_container_registry_enabled ? azurerm_container_registry.truefoundry_container_registry[0].id : ""
description = "Container registry ID"
}

output "truefoundry_container_registry_login_server" {
value = var.feature_container_registry_enabled ? azurerm_container_registry.truefoundry_container_registry[0].login_server : ""
value = var.feature_container_registry_enabled ? azurerm_container_registry.truefoundry_container_registry[0].login_server : ""
description = "Container registry login server url"
}

output "truefoundry_container_registry_admin_username" {
value = var.feature_container_registry_enabled ? azurerm_container_registry.truefoundry_container_registry[0].admin_username : ""
value = var.feature_container_registry_enabled ? azurerm_container_registry.truefoundry_container_registry[0].admin_username : ""
description = "Container registry admin username"
}

output "truefoundry_container_registry_admin_password" {
value = var.feature_container_registry_enabled ? azurerm_container_registry.truefoundry_container_registry[0].admin_password : ""
sensitive = true
value = var.feature_container_registry_enabled ? azurerm_container_registry.truefoundry_container_registry[0].admin_password : ""
sensitive = true
description = "Container registry admin password"
}

Expand All @@ -68,12 +68,12 @@ output "truefoundry_container_registry_admin_password" {
##################################################################################

output "truefoundry_cloud_integrations_azuread_application_id" {
value = var.feature_cloud_integration_enabled ? azuread_application.truefoundry_platform_features_application[0].id : ""
value = var.feature_cloud_integration_enabled ? azuread_application.truefoundry_platform_features_application[0].id : ""
description = "Azure AD application ID"
}

output "truefoundry_cloud_integrations_azuread_application_client_id" {
value = var.feature_cloud_integration_enabled ? azuread_application.truefoundry_platform_features_application[0].client_id : ""
value = var.feature_cloud_integration_enabled ? azuread_application.truefoundry_platform_features_application[0].client_id : ""
description = "Azure AD application client ID"
}

Expand Down

0 comments on commit fa9e1ac

Please sign in to comment.