├── .devcontainer └── devcontainer.json ├── .editorconfig ├── .gitattributes ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── avm_module_issue.yml │ ├── avm_question_feedback.yml │ └── config.yml ├── PULL_REQUEST_TEMPLATE.md ├── actions │ └── docs-check │ │ └── action.yml ├── copilot-instructions.md ├── dependabot.yml ├── policies │ ├── branchprotection.yml │ ├── eventResponder.yml │ └── scheduledSearches.yml └── workflows │ └── pr-check.yml ├── .gitignore ├── .terraform-docs.yml ├── .vscode ├── extensions.json ├── mcp.json └── settings.json ├── AGENTS.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── _footer.md ├── _header.md ├── avm ├── avm.bat ├── avm.ps1 ├── examples ├── .terraform-docs.yml ├── README.md ├── default │ ├── .gitkeep │ ├── .terraform-docs.yml │ ├── README.md │ ├── _footer.md │ ├── _header.md │ ├── local.tf │ ├── main.tf │ ├── pre-requisites-main.tf │ └── pre-requisites-outputs.tf ├── front_end_ip_private_custom_name │ ├── .terraform-docs.yml │ ├── README.md │ ├── _footer.md │ ├── _header.md │ ├── local.tf │ ├── main.tf │ ├── pre-requisites-main.tf │ ├── pre-requisites-outputs.tf │ └── variables.tf ├── front_end_ip_private_custom_name_privateonly │ ├── .terraform-docs.yml │ ├── README.md │ ├── _footer.md │ ├── _header.md │ ├── local.tf │ ├── main.tf │ ├── pre-requisites-main.tf │ ├── pre-requisites-outputs.tf │ └── variables.tf ├── kv_selfssl_waf_https_app_gateway │ ├── .terraform-docs.yml │ ├── .tflint.hcl │ ├── README.md │ ├── _footer.md │ ├── _header.md │ ├── local.tf │ ├── main.tf │ ├── pre-requisites-main.tf │ ├── pre-requisites-outputs.tf │ ├── ssl_cert_generate │ │ ├── certificate.pfx │ │ ├── generate_ssl_certificate.sh │ │ └── self-ssl-cert-main.tf │ └── variables.tf ├── kv_selfssl_waf_https_app_gateway_privateonly │ ├── .terraform-docs.yml │ ├── README.md │ ├── _footer.md │ ├── _header.md │ ├── main.tf │ ├── pre-requisites-main.tf │ ├── pre-requisites-outputs.tf │ ├── ssl_cert_generate │ │ ├── certificate.pfx │ │ ├── generate_ssl_certificate.sh │ │ └── self-ssl-cert-main.tf │ └── variables.tf ├── rewrite_rule │ ├── .terraform-docs.yml │ ├── README.md │ ├── _footer.md │ ├── _header.md │ ├── main.tf │ ├── pre-requisites-main.tf │ └── pre-requisites-outputs.tf ├── selfssl_waf_https_app_gateway │ ├── .terraform-docs.yml │ ├── .tflint.hcl │ ├── README.md │ ├── _footer.md │ ├── _header.md │ ├── local.tf │ ├── main.tf │ ├── pre-requisites-main.tf │ ├── pre-requisites-outputs.tf │ ├── ssl_cert_generate │ │ ├── certificate.pfx │ │ ├── generate_ssl_certificate.sh │ │ └── self-ssl-cert-main.tf │ └── variables.tf ├── simple_http_app_gateway_internal │ ├── .terraform-docs.yml │ ├── .tflint.hcl │ ├── README.md │ ├── _footer.md │ ├── _header.md │ ├── local.tf │ ├── main.tf │ ├── pre-requisites-main.tf │ ├── pre-requisites-outputs.tf │ └── variables.tf ├── simple_http_host_multiple_sites_app_gateway │ ├── .terraform-docs.yml │ ├── .tflint.hcl │ ├── README.md │ ├── _footer.md │ ├── _header.md │ ├── local.tf │ ├── main.tf │ ├── pre-requisites-main.tf │ ├── pre-requisites-outputs.tf │ └── variables.tf ├── simple_http_host_single_site_app_gateway │ ├── .terraform-docs.yml │ ├── README.md │ ├── _footer.md │ ├── _header.md │ ├── local.tf │ ├── main.tf │ ├── pre-requisites-main.tf │ └── pre-requisites-outputs.tf ├── simple_http_probe_app_gateway │ ├── .terraform-docs.yml │ ├── .tflint.hcl │ ├── README.md │ ├── _footer.md │ ├── _header.md │ ├── local.tf │ ├── main.tf │ ├── pre-requisites-main.tf │ ├── pre-requisites-outputs.tf │ └── variables.tf └── simple_waf_http_app_gateway │ ├── .terraform-docs.yml │ ├── .tflint.hcl │ ├── README.md │ ├── _footer.md │ ├── _header.md │ ├── local.tf │ ├── main.tf │ ├── pre-requisites-main.tf │ ├── pre-requisites-outputs.tf │ └── variables.tf ├── locals.tf ├── main.telemetry.tf ├── main.tf ├── modules ├── .terraform-docs.yml └── README.md ├── outputs.tf ├── terraform.tf ├── tests ├── README.md └── unit │ └── unit.go └── variables.tf /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/avm_module_issue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/.github/ISSUE_TEMPLATE/avm_module_issue.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/avm_question_feedback.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/.github/ISSUE_TEMPLATE/avm_question_feedback.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/actions/docs-check/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/.github/actions/docs-check/action.yml -------------------------------------------------------------------------------- /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/policies/branchprotection.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/.github/policies/branchprotection.yml -------------------------------------------------------------------------------- /.github/policies/eventResponder.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/.github/policies/eventResponder.yml -------------------------------------------------------------------------------- /.github/policies/scheduledSearches.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/.github/policies/scheduledSearches.yml -------------------------------------------------------------------------------- /.github/workflows/pr-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/.github/workflows/pr-check.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/.gitignore -------------------------------------------------------------------------------- /.terraform-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/.terraform-docs.yml -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/mcp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/.vscode/mcp.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/AGENTS.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /_footer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/_footer.md -------------------------------------------------------------------------------- /_header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/_header.md -------------------------------------------------------------------------------- /avm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/avm -------------------------------------------------------------------------------- /avm.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | .\avm.ps1 %1 3 | -------------------------------------------------------------------------------- /avm.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/avm.ps1 -------------------------------------------------------------------------------- /examples/.terraform-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/.terraform-docs.yml -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/default/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/default/.terraform-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/default/.terraform-docs.yml -------------------------------------------------------------------------------- /examples/default/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/default/README.md -------------------------------------------------------------------------------- /examples/default/_footer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/default/_footer.md -------------------------------------------------------------------------------- /examples/default/_header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/default/_header.md -------------------------------------------------------------------------------- /examples/default/local.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/default/local.tf -------------------------------------------------------------------------------- /examples/default/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/default/main.tf -------------------------------------------------------------------------------- /examples/default/pre-requisites-main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/default/pre-requisites-main.tf -------------------------------------------------------------------------------- /examples/default/pre-requisites-outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/default/pre-requisites-outputs.tf -------------------------------------------------------------------------------- /examples/front_end_ip_private_custom_name/.terraform-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/front_end_ip_private_custom_name/.terraform-docs.yml -------------------------------------------------------------------------------- /examples/front_end_ip_private_custom_name/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/front_end_ip_private_custom_name/README.md -------------------------------------------------------------------------------- /examples/front_end_ip_private_custom_name/_footer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/front_end_ip_private_custom_name/_footer.md -------------------------------------------------------------------------------- /examples/front_end_ip_private_custom_name/_header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/front_end_ip_private_custom_name/_header.md -------------------------------------------------------------------------------- /examples/front_end_ip_private_custom_name/local.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/front_end_ip_private_custom_name/local.tf -------------------------------------------------------------------------------- /examples/front_end_ip_private_custom_name/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/front_end_ip_private_custom_name/main.tf -------------------------------------------------------------------------------- /examples/front_end_ip_private_custom_name/pre-requisites-main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/front_end_ip_private_custom_name/pre-requisites-main.tf -------------------------------------------------------------------------------- /examples/front_end_ip_private_custom_name/pre-requisites-outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/front_end_ip_private_custom_name/pre-requisites-outputs.tf -------------------------------------------------------------------------------- /examples/front_end_ip_private_custom_name/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/front_end_ip_private_custom_name/variables.tf -------------------------------------------------------------------------------- /examples/front_end_ip_private_custom_name_privateonly/.terraform-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/front_end_ip_private_custom_name_privateonly/.terraform-docs.yml -------------------------------------------------------------------------------- /examples/front_end_ip_private_custom_name_privateonly/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/front_end_ip_private_custom_name_privateonly/README.md -------------------------------------------------------------------------------- /examples/front_end_ip_private_custom_name_privateonly/_footer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/front_end_ip_private_custom_name_privateonly/_footer.md -------------------------------------------------------------------------------- /examples/front_end_ip_private_custom_name_privateonly/_header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/front_end_ip_private_custom_name_privateonly/_header.md -------------------------------------------------------------------------------- /examples/front_end_ip_private_custom_name_privateonly/local.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/front_end_ip_private_custom_name_privateonly/local.tf -------------------------------------------------------------------------------- /examples/front_end_ip_private_custom_name_privateonly/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/front_end_ip_private_custom_name_privateonly/main.tf -------------------------------------------------------------------------------- /examples/front_end_ip_private_custom_name_privateonly/pre-requisites-main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/front_end_ip_private_custom_name_privateonly/pre-requisites-main.tf -------------------------------------------------------------------------------- /examples/front_end_ip_private_custom_name_privateonly/pre-requisites-outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/front_end_ip_private_custom_name_privateonly/pre-requisites-outputs.tf -------------------------------------------------------------------------------- /examples/front_end_ip_private_custom_name_privateonly/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/front_end_ip_private_custom_name_privateonly/variables.tf -------------------------------------------------------------------------------- /examples/kv_selfssl_waf_https_app_gateway/.terraform-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/kv_selfssl_waf_https_app_gateway/.terraform-docs.yml -------------------------------------------------------------------------------- /examples/kv_selfssl_waf_https_app_gateway/.tflint.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/kv_selfssl_waf_https_app_gateway/.tflint.hcl -------------------------------------------------------------------------------- /examples/kv_selfssl_waf_https_app_gateway/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/kv_selfssl_waf_https_app_gateway/README.md -------------------------------------------------------------------------------- /examples/kv_selfssl_waf_https_app_gateway/_footer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/kv_selfssl_waf_https_app_gateway/_footer.md -------------------------------------------------------------------------------- /examples/kv_selfssl_waf_https_app_gateway/_header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/kv_selfssl_waf_https_app_gateway/_header.md -------------------------------------------------------------------------------- /examples/kv_selfssl_waf_https_app_gateway/local.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/kv_selfssl_waf_https_app_gateway/local.tf -------------------------------------------------------------------------------- /examples/kv_selfssl_waf_https_app_gateway/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/kv_selfssl_waf_https_app_gateway/main.tf -------------------------------------------------------------------------------- /examples/kv_selfssl_waf_https_app_gateway/pre-requisites-main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/kv_selfssl_waf_https_app_gateway/pre-requisites-main.tf -------------------------------------------------------------------------------- /examples/kv_selfssl_waf_https_app_gateway/pre-requisites-outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/kv_selfssl_waf_https_app_gateway/pre-requisites-outputs.tf -------------------------------------------------------------------------------- /examples/kv_selfssl_waf_https_app_gateway/ssl_cert_generate/certificate.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/kv_selfssl_waf_https_app_gateway/ssl_cert_generate/certificate.pfx -------------------------------------------------------------------------------- /examples/kv_selfssl_waf_https_app_gateway/ssl_cert_generate/generate_ssl_certificate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/kv_selfssl_waf_https_app_gateway/ssl_cert_generate/generate_ssl_certificate.sh -------------------------------------------------------------------------------- /examples/kv_selfssl_waf_https_app_gateway/ssl_cert_generate/self-ssl-cert-main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/kv_selfssl_waf_https_app_gateway/ssl_cert_generate/self-ssl-cert-main.tf -------------------------------------------------------------------------------- /examples/kv_selfssl_waf_https_app_gateway/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/kv_selfssl_waf_https_app_gateway/variables.tf -------------------------------------------------------------------------------- /examples/kv_selfssl_waf_https_app_gateway_privateonly/.terraform-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/kv_selfssl_waf_https_app_gateway_privateonly/.terraform-docs.yml -------------------------------------------------------------------------------- /examples/kv_selfssl_waf_https_app_gateway_privateonly/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/kv_selfssl_waf_https_app_gateway_privateonly/README.md -------------------------------------------------------------------------------- /examples/kv_selfssl_waf_https_app_gateway_privateonly/_footer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/kv_selfssl_waf_https_app_gateway_privateonly/_footer.md -------------------------------------------------------------------------------- /examples/kv_selfssl_waf_https_app_gateway_privateonly/_header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/kv_selfssl_waf_https_app_gateway_privateonly/_header.md -------------------------------------------------------------------------------- /examples/kv_selfssl_waf_https_app_gateway_privateonly/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/kv_selfssl_waf_https_app_gateway_privateonly/main.tf -------------------------------------------------------------------------------- /examples/kv_selfssl_waf_https_app_gateway_privateonly/pre-requisites-main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/kv_selfssl_waf_https_app_gateway_privateonly/pre-requisites-main.tf -------------------------------------------------------------------------------- /examples/kv_selfssl_waf_https_app_gateway_privateonly/pre-requisites-outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/kv_selfssl_waf_https_app_gateway_privateonly/pre-requisites-outputs.tf -------------------------------------------------------------------------------- /examples/kv_selfssl_waf_https_app_gateway_privateonly/ssl_cert_generate/certificate.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/kv_selfssl_waf_https_app_gateway_privateonly/ssl_cert_generate/certificate.pfx -------------------------------------------------------------------------------- /examples/kv_selfssl_waf_https_app_gateway_privateonly/ssl_cert_generate/generate_ssl_certificate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/kv_selfssl_waf_https_app_gateway_privateonly/ssl_cert_generate/generate_ssl_certificate.sh -------------------------------------------------------------------------------- /examples/kv_selfssl_waf_https_app_gateway_privateonly/ssl_cert_generate/self-ssl-cert-main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/kv_selfssl_waf_https_app_gateway_privateonly/ssl_cert_generate/self-ssl-cert-main.tf -------------------------------------------------------------------------------- /examples/kv_selfssl_waf_https_app_gateway_privateonly/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/kv_selfssl_waf_https_app_gateway_privateonly/variables.tf -------------------------------------------------------------------------------- /examples/rewrite_rule/.terraform-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/rewrite_rule/.terraform-docs.yml -------------------------------------------------------------------------------- /examples/rewrite_rule/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/rewrite_rule/README.md -------------------------------------------------------------------------------- /examples/rewrite_rule/_footer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/rewrite_rule/_footer.md -------------------------------------------------------------------------------- /examples/rewrite_rule/_header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/rewrite_rule/_header.md -------------------------------------------------------------------------------- /examples/rewrite_rule/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/rewrite_rule/main.tf -------------------------------------------------------------------------------- /examples/rewrite_rule/pre-requisites-main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/rewrite_rule/pre-requisites-main.tf -------------------------------------------------------------------------------- /examples/rewrite_rule/pre-requisites-outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/rewrite_rule/pre-requisites-outputs.tf -------------------------------------------------------------------------------- /examples/selfssl_waf_https_app_gateway/.terraform-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/selfssl_waf_https_app_gateway/.terraform-docs.yml -------------------------------------------------------------------------------- /examples/selfssl_waf_https_app_gateway/.tflint.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/selfssl_waf_https_app_gateway/.tflint.hcl -------------------------------------------------------------------------------- /examples/selfssl_waf_https_app_gateway/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/selfssl_waf_https_app_gateway/README.md -------------------------------------------------------------------------------- /examples/selfssl_waf_https_app_gateway/_footer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/selfssl_waf_https_app_gateway/_footer.md -------------------------------------------------------------------------------- /examples/selfssl_waf_https_app_gateway/_header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/selfssl_waf_https_app_gateway/_header.md -------------------------------------------------------------------------------- /examples/selfssl_waf_https_app_gateway/local.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/selfssl_waf_https_app_gateway/local.tf -------------------------------------------------------------------------------- /examples/selfssl_waf_https_app_gateway/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/selfssl_waf_https_app_gateway/main.tf -------------------------------------------------------------------------------- /examples/selfssl_waf_https_app_gateway/pre-requisites-main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/selfssl_waf_https_app_gateway/pre-requisites-main.tf -------------------------------------------------------------------------------- /examples/selfssl_waf_https_app_gateway/pre-requisites-outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/selfssl_waf_https_app_gateway/pre-requisites-outputs.tf -------------------------------------------------------------------------------- /examples/selfssl_waf_https_app_gateway/ssl_cert_generate/certificate.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/selfssl_waf_https_app_gateway/ssl_cert_generate/certificate.pfx -------------------------------------------------------------------------------- /examples/selfssl_waf_https_app_gateway/ssl_cert_generate/generate_ssl_certificate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/selfssl_waf_https_app_gateway/ssl_cert_generate/generate_ssl_certificate.sh -------------------------------------------------------------------------------- /examples/selfssl_waf_https_app_gateway/ssl_cert_generate/self-ssl-cert-main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/selfssl_waf_https_app_gateway/ssl_cert_generate/self-ssl-cert-main.tf -------------------------------------------------------------------------------- /examples/selfssl_waf_https_app_gateway/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/selfssl_waf_https_app_gateway/variables.tf -------------------------------------------------------------------------------- /examples/simple_http_app_gateway_internal/.terraform-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/simple_http_app_gateway_internal/.terraform-docs.yml -------------------------------------------------------------------------------- /examples/simple_http_app_gateway_internal/.tflint.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/simple_http_app_gateway_internal/.tflint.hcl -------------------------------------------------------------------------------- /examples/simple_http_app_gateway_internal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/simple_http_app_gateway_internal/README.md -------------------------------------------------------------------------------- /examples/simple_http_app_gateway_internal/_footer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/simple_http_app_gateway_internal/_footer.md -------------------------------------------------------------------------------- /examples/simple_http_app_gateway_internal/_header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/simple_http_app_gateway_internal/_header.md -------------------------------------------------------------------------------- /examples/simple_http_app_gateway_internal/local.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/simple_http_app_gateway_internal/local.tf -------------------------------------------------------------------------------- /examples/simple_http_app_gateway_internal/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/simple_http_app_gateway_internal/main.tf -------------------------------------------------------------------------------- /examples/simple_http_app_gateway_internal/pre-requisites-main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/simple_http_app_gateway_internal/pre-requisites-main.tf -------------------------------------------------------------------------------- /examples/simple_http_app_gateway_internal/pre-requisites-outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/simple_http_app_gateway_internal/pre-requisites-outputs.tf -------------------------------------------------------------------------------- /examples/simple_http_app_gateway_internal/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/simple_http_app_gateway_internal/variables.tf -------------------------------------------------------------------------------- /examples/simple_http_host_multiple_sites_app_gateway/.terraform-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/simple_http_host_multiple_sites_app_gateway/.terraform-docs.yml -------------------------------------------------------------------------------- /examples/simple_http_host_multiple_sites_app_gateway/.tflint.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/simple_http_host_multiple_sites_app_gateway/.tflint.hcl -------------------------------------------------------------------------------- /examples/simple_http_host_multiple_sites_app_gateway/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/simple_http_host_multiple_sites_app_gateway/README.md -------------------------------------------------------------------------------- /examples/simple_http_host_multiple_sites_app_gateway/_footer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/simple_http_host_multiple_sites_app_gateway/_footer.md -------------------------------------------------------------------------------- /examples/simple_http_host_multiple_sites_app_gateway/_header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/simple_http_host_multiple_sites_app_gateway/_header.md -------------------------------------------------------------------------------- /examples/simple_http_host_multiple_sites_app_gateway/local.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/simple_http_host_multiple_sites_app_gateway/local.tf -------------------------------------------------------------------------------- /examples/simple_http_host_multiple_sites_app_gateway/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/simple_http_host_multiple_sites_app_gateway/main.tf -------------------------------------------------------------------------------- /examples/simple_http_host_multiple_sites_app_gateway/pre-requisites-main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/simple_http_host_multiple_sites_app_gateway/pre-requisites-main.tf -------------------------------------------------------------------------------- /examples/simple_http_host_multiple_sites_app_gateway/pre-requisites-outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/simple_http_host_multiple_sites_app_gateway/pre-requisites-outputs.tf -------------------------------------------------------------------------------- /examples/simple_http_host_multiple_sites_app_gateway/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/simple_http_host_multiple_sites_app_gateway/variables.tf -------------------------------------------------------------------------------- /examples/simple_http_host_single_site_app_gateway/.terraform-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/simple_http_host_single_site_app_gateway/.terraform-docs.yml -------------------------------------------------------------------------------- /examples/simple_http_host_single_site_app_gateway/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/simple_http_host_single_site_app_gateway/README.md -------------------------------------------------------------------------------- /examples/simple_http_host_single_site_app_gateway/_footer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/simple_http_host_single_site_app_gateway/_footer.md -------------------------------------------------------------------------------- /examples/simple_http_host_single_site_app_gateway/_header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/simple_http_host_single_site_app_gateway/_header.md -------------------------------------------------------------------------------- /examples/simple_http_host_single_site_app_gateway/local.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/simple_http_host_single_site_app_gateway/local.tf -------------------------------------------------------------------------------- /examples/simple_http_host_single_site_app_gateway/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/simple_http_host_single_site_app_gateway/main.tf -------------------------------------------------------------------------------- /examples/simple_http_host_single_site_app_gateway/pre-requisites-main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/simple_http_host_single_site_app_gateway/pre-requisites-main.tf -------------------------------------------------------------------------------- /examples/simple_http_host_single_site_app_gateway/pre-requisites-outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/simple_http_host_single_site_app_gateway/pre-requisites-outputs.tf -------------------------------------------------------------------------------- /examples/simple_http_probe_app_gateway/.terraform-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/simple_http_probe_app_gateway/.terraform-docs.yml -------------------------------------------------------------------------------- /examples/simple_http_probe_app_gateway/.tflint.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/simple_http_probe_app_gateway/.tflint.hcl -------------------------------------------------------------------------------- /examples/simple_http_probe_app_gateway/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/simple_http_probe_app_gateway/README.md -------------------------------------------------------------------------------- /examples/simple_http_probe_app_gateway/_footer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/simple_http_probe_app_gateway/_footer.md -------------------------------------------------------------------------------- /examples/simple_http_probe_app_gateway/_header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/simple_http_probe_app_gateway/_header.md -------------------------------------------------------------------------------- /examples/simple_http_probe_app_gateway/local.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/simple_http_probe_app_gateway/local.tf -------------------------------------------------------------------------------- /examples/simple_http_probe_app_gateway/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/simple_http_probe_app_gateway/main.tf -------------------------------------------------------------------------------- /examples/simple_http_probe_app_gateway/pre-requisites-main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/simple_http_probe_app_gateway/pre-requisites-main.tf -------------------------------------------------------------------------------- /examples/simple_http_probe_app_gateway/pre-requisites-outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/simple_http_probe_app_gateway/pre-requisites-outputs.tf -------------------------------------------------------------------------------- /examples/simple_http_probe_app_gateway/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/simple_http_probe_app_gateway/variables.tf -------------------------------------------------------------------------------- /examples/simple_waf_http_app_gateway/.terraform-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/simple_waf_http_app_gateway/.terraform-docs.yml -------------------------------------------------------------------------------- /examples/simple_waf_http_app_gateway/.tflint.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/simple_waf_http_app_gateway/.tflint.hcl -------------------------------------------------------------------------------- /examples/simple_waf_http_app_gateway/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/simple_waf_http_app_gateway/README.md -------------------------------------------------------------------------------- /examples/simple_waf_http_app_gateway/_footer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/simple_waf_http_app_gateway/_footer.md -------------------------------------------------------------------------------- /examples/simple_waf_http_app_gateway/_header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/simple_waf_http_app_gateway/_header.md -------------------------------------------------------------------------------- /examples/simple_waf_http_app_gateway/local.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/simple_waf_http_app_gateway/local.tf -------------------------------------------------------------------------------- /examples/simple_waf_http_app_gateway/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/simple_waf_http_app_gateway/main.tf -------------------------------------------------------------------------------- /examples/simple_waf_http_app_gateway/pre-requisites-main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/simple_waf_http_app_gateway/pre-requisites-main.tf -------------------------------------------------------------------------------- /examples/simple_waf_http_app_gateway/pre-requisites-outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/simple_waf_http_app_gateway/pre-requisites-outputs.tf -------------------------------------------------------------------------------- /examples/simple_waf_http_app_gateway/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/examples/simple_waf_http_app_gateway/variables.tf -------------------------------------------------------------------------------- /locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/locals.tf -------------------------------------------------------------------------------- /main.telemetry.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/main.telemetry.tf -------------------------------------------------------------------------------- /main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/main.tf -------------------------------------------------------------------------------- /modules/.terraform-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/modules/.terraform-docs.yml -------------------------------------------------------------------------------- /modules/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/modules/README.md -------------------------------------------------------------------------------- /outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/outputs.tf -------------------------------------------------------------------------------- /terraform.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/terraform.tf -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/unit/unit.go: -------------------------------------------------------------------------------- 1 | package unit 2 | -------------------------------------------------------------------------------- /variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/terraform-azurerm-avm-res-network-applicationgateway/HEAD/variables.tf --------------------------------------------------------------------------------