Skip to content

Commit 5cf2759

Browse files
committed
Add terraform outputs
1 parent f578541 commit 5cf2759

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

terraform/outputs.tf

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
output "container_app_url" {
2+
value = azurerm_container_app.ca_app.ingress[0].fqdn
3+
description = "The ingress URL of the container app"
4+
}

terraform/variables.tf

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
variable "subscription_id" {
2-
type = string
2+
type = string
3+
sensitive = true
34
}
45

56
variable "tenant_id" {
6-
type = string
7+
type = string
8+
sensitive = true
79
}
810

911
variable "rg_name" {

0 commit comments

Comments
 (0)