Skip to content

Commit e4e3adc

Browse files
committed
feat: add hostname output
1 parent bd004ea commit e4e3adc

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,9 @@ No modules.
6565

6666
| Name | Description |
6767
|------|-------------|
68+
| <a name="output_default_hostname"></a> [default\_hostname](#output\_default\_hostname) | Linux Web App default hostname |
6869
| <a name="output_id"></a> [id](#output\_id) | Linux Web App ID |
69-
| <a name="output_identity"></a> [identity](#output\_identity) | Function app Managed Identity |
70+
| <a name="output_identity"></a> [identity](#output\_identity) | Linux Web App Managed Identity |
7071
<!-- END_TF_DOCS -->
7172

7273
## License

outputs.tf

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,10 @@ output "id" {
55

66
output "identity" {
77
value = azurerm_linux_web_app.this.identity[*]
8-
description = "Function app Managed Identity"
8+
description = "Linux Web App Managed Identity"
9+
}
10+
11+
output "default_hostname" {
12+
value = azurerm_linux_web_app.this.default_hostname
13+
description = "Linux Web App default hostname"
914
}

0 commit comments

Comments
 (0)