Skip to content

Commit

Permalink
[EC-394] Remove westeurope folder from CGN configuration (#1122)
Browse files Browse the repository at this point in the history
  • Loading branch information
Krusty93 authored Aug 8, 2024
1 parent 6d1bbfb commit 8007466
Show file tree
Hide file tree
Showing 16 changed files with 20 additions and 20 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cgn_cd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
branches:
- main
paths:
- "src/domains/cgn**"
- "src/domains/cgn/**"

jobs:
release_prod:
Expand All @@ -15,5 +15,5 @@ jobs:
secrets: inherit
with:
environment: prod
dir: "src/domains/cgn/prod/westeurope"
dir: "src/domains/cgn/prod"
use_private_agent: true
4 changes: 2 additions & 2 deletions .github/workflows/cgn_ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
- reopened
- ready_for_review
paths:
- "src/domains/cgn**"
- "src/domains/cgn/**"
- ".github/workflows/cgn_**"

jobs:
Expand All @@ -20,5 +20,5 @@ jobs:
secrets: inherit
with:
environment: prod
dir: "src/domains/cgn/prod/westeurope"
dir: "src/domains/cgn/prod"
use_private_agent: true
2 changes: 1 addition & 1 deletion .github/workflows/static_analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
newmap[src/.template-app]="."
newmap[src/.template-common]="."
newmap[src/aks-platform]="."
newmap[src/domains/cgn]="./prod/westeurope"
newmap[src/domains/cgn]="./prod"
newmap[src/domains/selfcare]="./prod/westeurope"
newmap[src/domains/citizen-auth-app]="."
newmap[src/domains/citizen-auth-common]="."
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ module "storage_account_cgn" {
account_kind = "StorageV2"
account_tier = "Standard"
access_tier = "Hot"
account_replication_type = "GRS"
account_replication_type = "GZRS"
public_network_access_enabled = true

tags = var.tags
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@

| Name | Source | Version |
|------|--------|---------|
| <a name="module_apim"></a> [apim](#module\_apim) | ../../_modules/apim | n/a |
| <a name="module_cosmos"></a> [cosmos](#module\_cosmos) | ../../_modules/cosmos | n/a |
| <a name="module_functions"></a> [functions](#module\_functions) | ../../_modules/functions_apps | n/a |
| <a name="module_networking"></a> [networking](#module\_networking) | ../../_modules/networking | n/a |
| <a name="module_redis"></a> [redis](#module\_redis) | ../../_modules/redis | n/a |
| <a name="module_resource_groups"></a> [resource\_groups](#module\_resource\_groups) | ../../_modules/resource_groups | n/a |
| <a name="module_storage_accounts"></a> [storage\_accounts](#module\_storage\_accounts) | ../../_modules/storage_accounts | n/a |
| <a name="module_apim"></a> [apim](#module\_apim) | ../_modules/apim | n/a |
| <a name="module_cosmos"></a> [cosmos](#module\_cosmos) | ../_modules/cosmos | n/a |
| <a name="module_functions"></a> [functions](#module\_functions) | ../_modules/functions_apps | n/a |
| <a name="module_networking"></a> [networking](#module\_networking) | ../_modules/networking | n/a |
| <a name="module_redis"></a> [redis](#module\_redis) | ../_modules/redis | n/a |
| <a name="module_resource_groups"></a> [resource\_groups](#module\_resource\_groups) | ../_modules/resource_groups | n/a |
| <a name="module_storage_accounts"></a> [storage\_accounts](#module\_storage\_accounts) | ../_modules/storage_accounts | n/a |

## Resources

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module "apim" {
source = "../../_modules/apim"
source = "../_modules/apim"

project = local.project
env_short = local.env_short
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module "cosmos" {
source = "../../_modules/cosmos"
source = "../_modules/cosmos"

project = local.project
location = local.location
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module "functions" {
source = "../../_modules/functions_apps"
source = "../_modules/functions_apps"

project = local.project
location = local.location
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module "networking" {
source = "../../_modules/networking"
source = "../_modules/networking"

project = local.project

Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module "redis" {
source = "../../_modules/redis"
source = "../_modules/redis"

project = local.project
location = local.location
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module "resource_groups" {
source = "../../_modules/resource_groups"
source = "../_modules/resource_groups"

location = local.location
project = local.project
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module "storage_accounts" {
source = "../../_modules/storage_accounts"
source = "../_modules/storage_accounts"

project = local.project
location = local.location
Expand Down

0 comments on commit 8007466

Please sign in to comment.