Skip to content

Commit

Permalink
Merge pull request #3 from kumarvna/develop
Browse files Browse the repository at this point in the history
updating documentation and examples
  • Loading branch information
kumarvna authored Aug 16, 2021
2 parents 7e42a81 + ea54f06 commit b8e52e5
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 40 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ resource "azurerm_user_assigned_identity" "example" {
name = "appgw-api"
}
module "app-gateway" {
source = "kumarvna/app-gateway/azurerm"
module "application-gateway" {
source = "kumarvna/application-gateway/azurerm"
version = "1.0.0"
# Resource Group and location, VNet and Subnet detials (Required)
Expand Down
4 changes: 2 additions & 2 deletions examples/complete/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ resource "azurerm_user_assigned_identity" "example" {
name = "appgw-api"
}
module "app-gateway" {
source = "kumarvna/app-gateway/azurerm"
module "application-gateway" {
source = "kumarvna/application-gateway/azurerm"
version = "1.0.0"
# Resource Group and location, VNet and Subnet detials (Required)
Expand Down
4 changes: 2 additions & 2 deletions examples/complete/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ resource "azurerm_user_assigned_identity" "example" {
name = "appgw-api"
}

module "app-gateway" {
source = "kumarvna/app-gateway/azurerm"
module "application-gateway" {
source = "kumarvna/application-gateway/azurerm"
version = "1.0.0"

# Resource Group and location, VNet and Subnet detials (Required)
Expand Down
68 changes: 34 additions & 34 deletions examples/complete/output.tf
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
}

0 comments on commit b8e52e5

Please sign in to comment.