-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Better Front Door and Private Link integration due to module outputs (#…
…20) * default_domain, container_app_fqdn and container_app_uri to outputs * add default_domain to outputs to determine internal loadbalancer IP for Private Link Service integration * rename container_app_fqdn to container_app_uri and make container_app_fqdn a real FQDN The actual fqdn is in fact a URI, which can't be used as Front Door Origin, as it requires a bare FQDN. * Update outputs.tf * Update versions.tf --------- Co-authored-by: lonegunmanb <[email protected]>
- Loading branch information
1 parent
8075ed0
commit a4104e1
Showing
3 changed files
with
17 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
output "app_url" { | ||
value = module.container_apps.container_app_uri | ||
} | ||
ouput "app_fqdn" { | ||
value = module.container_apps.container_app_fqdn | ||
} | ||
output "default_domain" { | ||
value = module.container_apps.default_domain | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,4 +7,4 @@ terraform { | |
version = ">= 3.98, < 4.0" | ||
} | ||
} | ||
} | ||
} |