Skip to content

Commit b8e52e5

Browse files
authored
Merge pull request #3 from kumarvna/develop
updating documentation and examples
2 parents 7e42a81 + ea54f06 commit b8e52e5

File tree

4 files changed

+40
-40
lines changed

4 files changed

+40
-40
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ resource "azurerm_user_assigned_identity" "example" {
2020
name = "appgw-api"
2121
}
2222
23-
module "app-gateway" {
24-
source = "kumarvna/app-gateway/azurerm"
23+
module "application-gateway" {
24+
source = "kumarvna/application-gateway/azurerm"
2525
version = "1.0.0"
2626
2727
# Resource Group and location, VNet and Subnet detials (Required)

examples/complete/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ resource "azurerm_user_assigned_identity" "example" {
2020
name = "appgw-api"
2121
}
2222
23-
module "app-gateway" {
24-
source = "kumarvna/app-gateway/azurerm"
23+
module "application-gateway" {
24+
source = "kumarvna/application-gateway/azurerm"
2525
version = "1.0.0"
2626
2727
# Resource Group and location, VNet and Subnet detials (Required)

examples/complete/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ resource "azurerm_user_assigned_identity" "example" {
99
name = "appgw-api"
1010
}
1111

12-
module "app-gateway" {
13-
source = "kumarvna/app-gateway/azurerm"
12+
module "application-gateway" {
13+
source = "kumarvna/application-gateway/azurerm"
1414
version = "1.0.0"
1515

1616
# Resource Group and location, VNet and Subnet detials (Required)

examples/complete/output.tf

Lines changed: 34 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -1,169 +1,169 @@
11
output "application_gateway_id" {
22
description = "The ID of the Application Gateway"
3-
value = module.app-gateway.application_gateway_id
3+
value = module.application-gateway.application_gateway_id
44
}
55

66
output "authentication_certificate_id" {
77
description = " The ID of the Authentication Certificate"
8-
value = module.app-gateway.authentication_certificate_id
8+
value = module.application-gateway.authentication_certificate_id
99
}
1010

1111
output "backend_address_pool_id" {
1212
description = "The ID of the Backend Address Pool"
13-
value = module.app-gateway.backend_address_pool_id
13+
value = module.application-gateway.backend_address_pool_id
1414
}
1515

1616
output "backend_http_settings_id" {
1717
description = "The ID of the Backend HTTP Settings Configuration"
18-
value = module.app-gateway.backend_http_settings_id
18+
value = module.application-gateway.backend_http_settings_id
1919
}
2020

2121
output "backend_http_settings_probe_id" {
2222
description = "The ID of the Backend HTTP Settings Configuration associated Probe"
23-
value = module.app-gateway.backend_http_settings_probe_id
23+
value = module.application-gateway.backend_http_settings_probe_id
2424
}
2525

2626
output "frontend_ip_configuration_id" {
2727
description = "The ID of the Frontend IP Configuration"
28-
value = module.app-gateway.frontend_ip_configuration_id
28+
value = module.application-gateway.frontend_ip_configuration_id
2929
}
3030

3131
output "frontend_port_id" {
3232
description = "The ID of the Frontend Port"
33-
value = module.app-gateway.frontend_port_id
33+
value = module.application-gateway.frontend_port_id
3434
}
3535

3636
output "gateway_ip_configuration_id" {
3737
description = "The ID of the Gateway IP Configuration"
38-
value = module.app-gateway.gateway_ip_configuration_id
38+
value = module.application-gateway.gateway_ip_configuration_id
3939
}
4040

4141
output "http_listener_id" {
4242
description = "The ID of the HTTP Listener"
43-
value = module.app-gateway.http_listener_id
43+
value = module.application-gateway.http_listener_id
4444
}
4545

4646
output "http_listener_frontend_ip_configuration_id" {
4747
description = "The ID of the associated Frontend Configuration"
48-
value = module.app-gateway.http_listener_frontend_ip_configuration_id
48+
value = module.application-gateway.http_listener_frontend_ip_configuration_id
4949
}
5050

5151
output "http_listener_frontend_port_id" {
5252
description = "The ID of the associated Frontend Port"
53-
value = module.app-gateway.http_listener_frontend_port_id
53+
value = module.application-gateway.http_listener_frontend_port_id
5454
}
5555

5656
output "http_listener_ssl_certificate_id" {
5757
description = "The ID of the associated SSL Certificate"
58-
value = module.app-gateway.http_listener_ssl_certificate_id
58+
value = module.application-gateway.http_listener_ssl_certificate_id
5959
}
6060

6161
output "probe_id" {
6262
description = "The ID of the health Probe"
63-
value = module.app-gateway.probe_id
63+
value = module.application-gateway.probe_id
6464
}
6565

6666
output "request_routing_rule_id" {
6767
description = "The ID of the Request Routing Rule"
68-
value = module.app-gateway.request_routing_rule_id
68+
value = module.application-gateway.request_routing_rule_id
6969
}
7070

7171
output "request_routing_rule_http_listener_id" {
7272
description = "The ID of the Request Routing Rule associated HTTP Listener"
73-
value = module.app-gateway.request_routing_rule_http_listener_id
73+
value = module.application-gateway.request_routing_rule_http_listener_id
7474
}
7575

7676
output "request_routing_rule_backend_address_pool_id" {
7777
description = "The ID of the Request Routing Rule associated Backend Address Pool"
78-
value = module.app-gateway.request_routing_rule_backend_address_pool_id
78+
value = module.application-gateway.request_routing_rule_backend_address_pool_id
7979
}
8080

8181
output "request_routing_rule_backend_http_settings_id" {
8282
description = "The ID of the Request Routing Rule associated Backend HTTP Settings Configuration"
83-
value = module.app-gateway.request_routing_rule_backend_http_settings_id
83+
value = module.application-gateway.request_routing_rule_backend_http_settings_id
8484
}
8585

8686
output "request_routing_rule_redirect_configuration_id" {
8787
description = "The ID of the Request Routing Rule associated Redirect Configuration"
88-
value = module.app-gateway.request_routing_rule_redirect_configuration_id
88+
value = module.application-gateway.request_routing_rule_redirect_configuration_id
8989
}
9090

9191
output "request_routing_rule_rewrite_rule_set_id" {
9292
description = "The ID of the Request Routing Rule associated Rewrite Rule Set"
93-
value = module.app-gateway.request_routing_rule_rewrite_rule_set_id
93+
value = module.application-gateway.request_routing_rule_rewrite_rule_set_id
9494
}
9595

9696
output "request_routing_rule_url_path_map_id" {
9797
description = "The ID of the Request Routing Rule associated URL Path Map"
98-
value = module.app-gateway.request_routing_rule_url_path_map_id
98+
value = module.application-gateway.request_routing_rule_url_path_map_id
9999
}
100100

101101
output "ssl_certificate_id" {
102102
description = "The ID of the SSL Certificate"
103-
value = module.app-gateway.ssl_certificate_id
103+
value = module.application-gateway.ssl_certificate_id
104104
}
105105

106106
output "ssl_certificate_public_cert_data" {
107107
description = "The Public Certificate Data associated with the SSL Certificate"
108-
value = module.app-gateway.ssl_certificate_public_cert_data
108+
value = module.application-gateway.ssl_certificate_public_cert_data
109109
}
110110

111111
output "url_path_map_id" {
112112
description = "The ID of the URL Path Map"
113-
value = module.app-gateway.url_path_map_id
113+
value = module.application-gateway.url_path_map_id
114114
}
115115

116116
output "url_path_map_default_backend_address_pool_id" {
117117
description = "The ID of the Default Backend Address Pool associated with URL Path Map"
118-
value = module.app-gateway.url_path_map_default_backend_address_pool_id
118+
value = module.application-gateway.url_path_map_default_backend_address_pool_id
119119
}
120120

121121
output "url_path_map_default_backend_http_settings_id" {
122122
description = "The ID of the Default Backend HTTP Settings Collection associated with URL Path Map"
123-
value = module.app-gateway.url_path_map_default_backend_http_settings_id
123+
value = module.application-gateway.url_path_map_default_backend_http_settings_id
124124
}
125125

126126
output "url_path_map_default_redirect_configuration_id" {
127127
description = "The ID of the Default Redirect Configuration associated with URL Path Map"
128-
value = module.app-gateway.url_path_map_default_redirect_configuration_id
128+
value = module.application-gateway.url_path_map_default_redirect_configuration_id
129129
}
130130

131131
output "url_path_map_path_rule_id" {
132132
description = "The ID of the Path Rule associated with URL Path Map"
133-
value = module.app-gateway.url_path_map_path_rule_id
133+
value = module.application-gateway.url_path_map_path_rule_id
134134
}
135135

136136
output "url_path_map_path_rule_backend_address_pool_id" {
137137
description = "The ID of the Backend Address Pool used in this Path Rule"
138-
value = module.app-gateway.url_path_map_path_rule_backend_address_pool_id
138+
value = module.application-gateway.url_path_map_path_rule_backend_address_pool_id
139139
}
140140

141141
output "url_path_map_path_rule_backend_http_settings_id" {
142142
description = "The ID of the Backend HTTP Settings Collection used in this Path Rule"
143-
value = module.app-gateway.url_path_map_path_rule_backend_http_settings_id
143+
value = module.application-gateway.url_path_map_path_rule_backend_http_settings_id
144144
}
145145

146146
output "url_path_map_path_rule_redirect_configuration_id" {
147147
description = "The ID of the Redirect Configuration used in this Path Rule"
148-
value = module.app-gateway.url_path_map_path_rule_redirect_configuration_id
148+
value = module.application-gateway.url_path_map_path_rule_redirect_configuration_id
149149
}
150150

151151
output "url_path_map_path_rule_rewrite_rule_set_id" {
152152
description = "The ID of the Rewrite Rule Set used in this Path Rule"
153-
value = module.app-gateway.url_path_map_path_rule_rewrite_rule_set_id
153+
value = module.application-gateway.url_path_map_path_rule_rewrite_rule_set_id
154154
}
155155

156156
output "custom_error_configuration_id" {
157157
description = "The ID of the Custom Error Configuration"
158-
value = module.app-gateway.custom_error_configuration_id
158+
value = module.application-gateway.custom_error_configuration_id
159159
}
160160

161161
output "redirect_configuration_id" {
162162
description = "The ID of the Redirect Configuration"
163-
value = module.app-gateway.redirect_configuration_id
163+
value = module.application-gateway.redirect_configuration_id
164164
}
165165

166166
output "rewrite_rule_set_id" {
167167
description = "The ID of the Rewrite Rule Set"
168-
value = module.app-gateway.rewrite_rule_set_id
168+
value = module.application-gateway.rewrite_rule_set_id
169169
}

0 commit comments

Comments
 (0)