This repository has been archived by the owner on Mar 3, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix: append pid to temp folder normalise ssr app in aks tf * fix: disable cypress * fix: cdn endpoint * fix: update csr to use latest core set up * fix: unnecessary var passed in to redis server-side app * fix: correct aks cluster * fix: new urls depracating old ones * fix: add acme inline support for TLS provisioning * fix: disable helmet in the app * fix: create redirect * fix: test snapshot * fix: export header * fix: redirect ... maybe * fix: yumido homepage pressed from header
- Loading branch information
Showing
29 changed files
with
257 additions
and
153 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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 |
---|---|---|
|
@@ -128,6 +128,7 @@ stages: | |
TF_VAR_name_component: $(domain), | ||
TF_VAR_name_environment: nonprod, | ||
TF_VAR_create_acr: true, | ||
TF_VAR_acme_email: "[email protected]", | ||
TF_VAR_is_cluster_private: true, | ||
TF_VAR_cluster_version: $(aks_cluster_version), | ||
TF_VAR_stage: nonprod, | ||
|
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
18 changes: 18 additions & 0 deletions
18
packages/scaffolding-cli/templates/deploy/azure/app/csr/custom.tf
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,18 @@ | ||
# Example of further extensions to Stacks Core templates | ||
# Potential user defined extensions | ||
data "azurerm_application_insights" "example" { | ||
name = var.app_insights_name | ||
resource_group_name = var.core_resource_group | ||
} | ||
|
||
output "app_insights_instrumentation_key" { | ||
description = "App Insights key for downstream deploymnent use" | ||
value = data.azurerm_application_insights.example.instrumentation_key | ||
sensitive = true | ||
} | ||
|
||
variable app_insights_name { | ||
type = string | ||
default = "" | ||
description = "app insights name for key retriaval in memory" | ||
} |
18 changes: 18 additions & 0 deletions
18
packages/scaffolding-cli/templates/deploy/azure/app/kube/custom.tf
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,18 @@ | ||
# Example of further extensions to Stacks Core templates | ||
# Potential user defined extensions | ||
data "azurerm_application_insights" "example" { | ||
name = var.app_insights_name | ||
resource_group_name = var.core_resource_group | ||
} | ||
|
||
output "app_insights_instrumentation_key" { | ||
description = "App Insights key for downstream deploymnent use" | ||
value = data.azurerm_application_insights.example.instrumentation_key | ||
sensitive = true | ||
} | ||
|
||
variable app_insights_name { | ||
type = string | ||
default = "" | ||
description = "app insights name for key retriaval in memory" | ||
} |
4 changes: 2 additions & 2 deletions
4
packages/scaffolding-cli/templates/deploy/azure/app/kube/lookups.tf
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
# We are keeping this as a lookup | ||
# since proper conventions for naming of resources should be followed | ||
# since proper conventions for naming of resources should be followed | ||
# and things can always be looked up without resorting to cross state searches | ||
data "azurerm_public_ip" "app_gateway" { | ||
name = var.app_gateway_frontend_ip_name | ||
resource_group_name = var.resource_group_name | ||
resource_group_name = var.core_resource_group | ||
} |
Oops, something went wrong.