This repository has been archived by the owner on Feb 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 233
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'AL-sandpit' into starter
- Loading branch information
Showing
107 changed files
with
6,941 additions
and
127 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,4 +17,5 @@ landing_zone_aks | |
**/*.csr | ||
**/*.key | ||
**/*.pem | ||
**/*.cer | ||
**/*.cer | ||
landing_zone_data_analytics |
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
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 |
---|---|---|
|
@@ -14,4 +14,5 @@ azure_container_registries = { | |
} | ||
} | ||
} | ||
} | ||
} | ||
|
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
# Cloud Adoption Framework landing zones for Terraform - App Service Environment landing zone configuration file |
39 changes: 39 additions & 0 deletions
39
configuration/demo/level3/app_service/app_service_environment.tfvars
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 |
---|---|---|
@@ -0,0 +1,39 @@ | ||
|
||
app_service_environments = { | ||
ase1 = { | ||
resource_group_key = "ase_region1" | ||
name = "ase01" | ||
max_length = "80" | ||
kind = "ASEV2" | ||
zone = "1" | ||
|
||
vnet_key = "ase_region1" | ||
subnet_key = "ase1" | ||
internalLoadBalancingMode = "3" | ||
|
||
# private_dns_records = { | ||
# a_records = { | ||
# ase_a_record = { | ||
# name = "" | ||
# ttl = 300 | ||
# lz_key = "private_dns" | ||
# private_dns_key = "ase" | ||
# } | ||
# wilcard = { | ||
# name = "*" | ||
# ttl = 300 | ||
# lz_key = "private_dns" | ||
# private_dns_key = "ase" | ||
# } | ||
# } | ||
# } | ||
|
||
# diagnostic_profiles = { | ||
# ase = { | ||
# definition_key = "ase" | ||
# destination_type = "log_analytics" | ||
# destination_key = "central_logs" | ||
# } | ||
# } | ||
} | ||
} |
34 changes: 34 additions & 0 deletions
34
configuration/demo/level3/app_service/app_service_plans.tfvars
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 |
---|---|---|
@@ -0,0 +1,34 @@ | ||
|
||
app_service_plans = { | ||
# asp1 = { | ||
# app_service_environment_key = "ase1" | ||
# resource_group_key = "asp_region1" | ||
|
||
# name = "ase1-asp01" | ||
# kind = "Windows" | ||
|
||
# sku = { | ||
# tier = "Isolated" | ||
# size = "I1" | ||
# capacity = "1" | ||
# per_site_scaling = true | ||
# } | ||
# }, | ||
asp2 = { | ||
app_service_environment_key = "ase1" | ||
resource_group_key = "asp_region1" | ||
|
||
name = "ase1-asp02" | ||
kind = "Linux" | ||
|
||
//When creating a Linux App Service Plan, the reserved field must be set to true | ||
reserved = true | ||
|
||
sku = { | ||
tier = "Isolated" | ||
size = "I1" | ||
capacity = "1" | ||
per_site_scaling = true | ||
} | ||
} | ||
} |
50 changes: 50 additions & 0 deletions
50
configuration/demo/level3/app_service/configuration.tfvars
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 |
---|---|---|
@@ -0,0 +1,50 @@ | ||
|
||
landingzone = { | ||
backend_type = "azurerm" | ||
global_settings_key = "shared_services" | ||
level = "level3" | ||
key = "ase" | ||
tfstates = { | ||
# networking_spoke_ase = { | ||
# level = "current" | ||
# tfstate = "networking_spoke_ase.tfstate" | ||
# } | ||
shared_services = { | ||
level = "lower" | ||
tfstate = "caf_shared_services.tfstate" | ||
} | ||
} | ||
} | ||
|
||
resource_groups = { | ||
ase_region1 = { | ||
name = "ase" | ||
region = "region1" | ||
} | ||
asp_region1 = { | ||
name = "asp" | ||
region = "region1" | ||
} | ||
networking_ase = { | ||
name = "networking-ase" | ||
region = "region1" | ||
} | ||
} | ||
|
||
|
||
# diagnostics_definition = { | ||
# ase = { | ||
# name = "operational_logs_and_metrics" | ||
# categories = { | ||
# log = [ | ||
# # ["Category name", "Diagnostics Enabled(true/false)", "Retention Enabled(true/false)", Retention_period] | ||
# ["AppServiceEnvironmentPlatformLogs", true, true, 5], | ||
# ] | ||
# # metric = [ | ||
# # #["Category name", "Diagnostics Enabled(true/false)", "Retention Enabled(true/false)", Retention_period] | ||
# # ["AllMetrics", false, false, 7], | ||
# # ] | ||
# } | ||
# } | ||
|
||
# } |
Oops, something went wrong.