-
-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from kumarvna/develop
updating documentation and examples
- Loading branch information
Showing
4 changed files
with
40 additions
and
40 deletions.
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
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
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,169 +1,169 @@ | ||
output "application_gateway_id" { | ||
description = "The ID of the Application Gateway" | ||
value = module.app-gateway.application_gateway_id | ||
value = module.application-gateway.application_gateway_id | ||
} | ||
|
||
output "authentication_certificate_id" { | ||
description = " The ID of the Authentication Certificate" | ||
value = module.app-gateway.authentication_certificate_id | ||
value = module.application-gateway.authentication_certificate_id | ||
} | ||
|
||
output "backend_address_pool_id" { | ||
description = "The ID of the Backend Address Pool" | ||
value = module.app-gateway.backend_address_pool_id | ||
value = module.application-gateway.backend_address_pool_id | ||
} | ||
|
||
output "backend_http_settings_id" { | ||
description = "The ID of the Backend HTTP Settings Configuration" | ||
value = module.app-gateway.backend_http_settings_id | ||
value = module.application-gateway.backend_http_settings_id | ||
} | ||
|
||
output "backend_http_settings_probe_id" { | ||
description = "The ID of the Backend HTTP Settings Configuration associated Probe" | ||
value = module.app-gateway.backend_http_settings_probe_id | ||
value = module.application-gateway.backend_http_settings_probe_id | ||
} | ||
|
||
output "frontend_ip_configuration_id" { | ||
description = "The ID of the Frontend IP Configuration" | ||
value = module.app-gateway.frontend_ip_configuration_id | ||
value = module.application-gateway.frontend_ip_configuration_id | ||
} | ||
|
||
output "frontend_port_id" { | ||
description = "The ID of the Frontend Port" | ||
value = module.app-gateway.frontend_port_id | ||
value = module.application-gateway.frontend_port_id | ||
} | ||
|
||
output "gateway_ip_configuration_id" { | ||
description = "The ID of the Gateway IP Configuration" | ||
value = module.app-gateway.gateway_ip_configuration_id | ||
value = module.application-gateway.gateway_ip_configuration_id | ||
} | ||
|
||
output "http_listener_id" { | ||
description = "The ID of the HTTP Listener" | ||
value = module.app-gateway.http_listener_id | ||
value = module.application-gateway.http_listener_id | ||
} | ||
|
||
output "http_listener_frontend_ip_configuration_id" { | ||
description = "The ID of the associated Frontend Configuration" | ||
value = module.app-gateway.http_listener_frontend_ip_configuration_id | ||
value = module.application-gateway.http_listener_frontend_ip_configuration_id | ||
} | ||
|
||
output "http_listener_frontend_port_id" { | ||
description = "The ID of the associated Frontend Port" | ||
value = module.app-gateway.http_listener_frontend_port_id | ||
value = module.application-gateway.http_listener_frontend_port_id | ||
} | ||
|
||
output "http_listener_ssl_certificate_id" { | ||
description = "The ID of the associated SSL Certificate" | ||
value = module.app-gateway.http_listener_ssl_certificate_id | ||
value = module.application-gateway.http_listener_ssl_certificate_id | ||
} | ||
|
||
output "probe_id" { | ||
description = "The ID of the health Probe" | ||
value = module.app-gateway.probe_id | ||
value = module.application-gateway.probe_id | ||
} | ||
|
||
output "request_routing_rule_id" { | ||
description = "The ID of the Request Routing Rule" | ||
value = module.app-gateway.request_routing_rule_id | ||
value = module.application-gateway.request_routing_rule_id | ||
} | ||
|
||
output "request_routing_rule_http_listener_id" { | ||
description = "The ID of the Request Routing Rule associated HTTP Listener" | ||
value = module.app-gateway.request_routing_rule_http_listener_id | ||
value = module.application-gateway.request_routing_rule_http_listener_id | ||
} | ||
|
||
output "request_routing_rule_backend_address_pool_id" { | ||
description = "The ID of the Request Routing Rule associated Backend Address Pool" | ||
value = module.app-gateway.request_routing_rule_backend_address_pool_id | ||
value = module.application-gateway.request_routing_rule_backend_address_pool_id | ||
} | ||
|
||
output "request_routing_rule_backend_http_settings_id" { | ||
description = "The ID of the Request Routing Rule associated Backend HTTP Settings Configuration" | ||
value = module.app-gateway.request_routing_rule_backend_http_settings_id | ||
value = module.application-gateway.request_routing_rule_backend_http_settings_id | ||
} | ||
|
||
output "request_routing_rule_redirect_configuration_id" { | ||
description = "The ID of the Request Routing Rule associated Redirect Configuration" | ||
value = module.app-gateway.request_routing_rule_redirect_configuration_id | ||
value = module.application-gateway.request_routing_rule_redirect_configuration_id | ||
} | ||
|
||
output "request_routing_rule_rewrite_rule_set_id" { | ||
description = "The ID of the Request Routing Rule associated Rewrite Rule Set" | ||
value = module.app-gateway.request_routing_rule_rewrite_rule_set_id | ||
value = module.application-gateway.request_routing_rule_rewrite_rule_set_id | ||
} | ||
|
||
output "request_routing_rule_url_path_map_id" { | ||
description = "The ID of the Request Routing Rule associated URL Path Map" | ||
value = module.app-gateway.request_routing_rule_url_path_map_id | ||
value = module.application-gateway.request_routing_rule_url_path_map_id | ||
} | ||
|
||
output "ssl_certificate_id" { | ||
description = "The ID of the SSL Certificate" | ||
value = module.app-gateway.ssl_certificate_id | ||
value = module.application-gateway.ssl_certificate_id | ||
} | ||
|
||
output "ssl_certificate_public_cert_data" { | ||
description = "The Public Certificate Data associated with the SSL Certificate" | ||
value = module.app-gateway.ssl_certificate_public_cert_data | ||
value = module.application-gateway.ssl_certificate_public_cert_data | ||
} | ||
|
||
output "url_path_map_id" { | ||
description = "The ID of the URL Path Map" | ||
value = module.app-gateway.url_path_map_id | ||
value = module.application-gateway.url_path_map_id | ||
} | ||
|
||
output "url_path_map_default_backend_address_pool_id" { | ||
description = "The ID of the Default Backend Address Pool associated with URL Path Map" | ||
value = module.app-gateway.url_path_map_default_backend_address_pool_id | ||
value = module.application-gateway.url_path_map_default_backend_address_pool_id | ||
} | ||
|
||
output "url_path_map_default_backend_http_settings_id" { | ||
description = "The ID of the Default Backend HTTP Settings Collection associated with URL Path Map" | ||
value = module.app-gateway.url_path_map_default_backend_http_settings_id | ||
value = module.application-gateway.url_path_map_default_backend_http_settings_id | ||
} | ||
|
||
output "url_path_map_default_redirect_configuration_id" { | ||
description = "The ID of the Default Redirect Configuration associated with URL Path Map" | ||
value = module.app-gateway.url_path_map_default_redirect_configuration_id | ||
value = module.application-gateway.url_path_map_default_redirect_configuration_id | ||
} | ||
|
||
output "url_path_map_path_rule_id" { | ||
description = "The ID of the Path Rule associated with URL Path Map" | ||
value = module.app-gateway.url_path_map_path_rule_id | ||
value = module.application-gateway.url_path_map_path_rule_id | ||
} | ||
|
||
output "url_path_map_path_rule_backend_address_pool_id" { | ||
description = "The ID of the Backend Address Pool used in this Path Rule" | ||
value = module.app-gateway.url_path_map_path_rule_backend_address_pool_id | ||
value = module.application-gateway.url_path_map_path_rule_backend_address_pool_id | ||
} | ||
|
||
output "url_path_map_path_rule_backend_http_settings_id" { | ||
description = "The ID of the Backend HTTP Settings Collection used in this Path Rule" | ||
value = module.app-gateway.url_path_map_path_rule_backend_http_settings_id | ||
value = module.application-gateway.url_path_map_path_rule_backend_http_settings_id | ||
} | ||
|
||
output "url_path_map_path_rule_redirect_configuration_id" { | ||
description = "The ID of the Redirect Configuration used in this Path Rule" | ||
value = module.app-gateway.url_path_map_path_rule_redirect_configuration_id | ||
value = module.application-gateway.url_path_map_path_rule_redirect_configuration_id | ||
} | ||
|
||
output "url_path_map_path_rule_rewrite_rule_set_id" { | ||
description = "The ID of the Rewrite Rule Set used in this Path Rule" | ||
value = module.app-gateway.url_path_map_path_rule_rewrite_rule_set_id | ||
value = module.application-gateway.url_path_map_path_rule_rewrite_rule_set_id | ||
} | ||
|
||
output "custom_error_configuration_id" { | ||
description = "The ID of the Custom Error Configuration" | ||
value = module.app-gateway.custom_error_configuration_id | ||
value = module.application-gateway.custom_error_configuration_id | ||
} | ||
|
||
output "redirect_configuration_id" { | ||
description = "The ID of the Redirect Configuration" | ||
value = module.app-gateway.redirect_configuration_id | ||
value = module.application-gateway.redirect_configuration_id | ||
} | ||
|
||
output "rewrite_rule_set_id" { | ||
description = "The ID of the Rewrite Rule Set" | ||
value = module.app-gateway.rewrite_rule_set_id | ||
value = module.application-gateway.rewrite_rule_set_id | ||
} |