@@ -79,13 +79,13 @@ resource "azurerm_service_plan" "example" {
7979# Use data object to reference an existing Key Vault and stored certificate
8080/*
8181data "azurerm_key_vault" "existing_keyvault" {
82- name = "vault3-4-24 "
83- resource_group_name = "rg-test "
82+ name = "<keyvault_name> "
83+ resource_group_name = "<keyvault_resource_group> "
8484}
8585# /*
8686data "azurerm_key_vault_secret" "stored_certificate" {
8787 key_vault_id = data.azurerm_key_vault.existing_keyvault.id
88- name = "donvmccoy "
88+ name = "<certificate_name> "
8989}
9090*/
9191
@@ -95,7 +95,7 @@ module "test" {
9595 source = "../../"
9696
9797 # source = "Azure/avm-res-web-site/azurerm"
98- # version = "0.7.4 "
98+ # version = "0.8.1 "
9999
100100 enable_telemetry = var.enable_telemetry
101101
@@ -176,7 +176,7 @@ module "test" {
176176 pfx_blob = data.azurerm_key_vault_secret.stored_certificate.value
177177
178178 app_service_name = "${module.naming.function_app.name_unique}-custom-domain"
179- hostname = "${module.naming.function_app.name_unique}-custom-domain.donvmccoy.com "
179+ hostname = "${module.naming.function_app.name_unique}-custom-domain.<zone_name> "
180180 resource_group_name = azurerm_resource_group.example.name
181181 ssl_state = "SniEnabled"
182182 thumbprint_key = "production" # Currently the key of the custom domain
@@ -206,7 +206,7 @@ module "test" {
206206 # pfx_blob = data.azurerm_key_vault_secret.stored_certificate.value
207207
208208 app_service_slot_key = "qa"
209- hostname = "${module.naming.function_app.name_unique}-qa.donvmccoy.com "
209+ hostname = "${module.naming.function_app.name_unique}-qa.<zone_name> "
210210 ssl_state = "SniEnabled"
211211 thumbprint_key = "production"
212212 }
@@ -282,6 +282,10 @@ Description: This is the full output for the resource.
282282
283283Description: This is the URI for the resource.
284284
285+ ### <a name =" output_thumbprints " ></a > [ thumbprints] ( #output\_ thumbprints )
286+
287+ Description: This is the thumbprints for the resource.
288+
285289## Modules
286290
287291The following Modules are called:
0 commit comments