Skip to content

Commit 342735f

Browse files
VIA-629 SB & EO Add campaigns config to all environment.
1 parent 21a5a10 commit 342735f

File tree

8 files changed

+32
-0
lines changed

8 files changed

+32
-0
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"COVID_19": [
3+
{ "start": "20251112", "end": "20260131" },
4+
{ "start": "20261101", "end": "20270131" }
5+
]
6+
}

infrastructure/environments/dev/locals.tf

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,8 @@ locals {
5050

5151
SECRETS_MANAGER_TTL = 300
5252
PARAMETERS_SECRETS_EXTENSION_LOG_LEVEL = "INFO"
53+
54+
CAMPAIGNS = file("${path.module}/campaigns.json")
5355
}
5456

5557
default_tags = {
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"COVID_19": [
3+
{ "start": "20251112", "end": "20260131" },
4+
{ "start": "20261101", "end": "20270131" }
5+
]
6+
}

infrastructure/environments/preprod/locals.tf

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,8 @@ locals {
5252

5353
SSM_PARAMETER_STORE_TTL = 300
5454
PARAMETERS_SECRETS_EXTENSION_LOG_LEVEL = "INFO"
55+
56+
CAMPAIGNS = file("${path.module}/campaigns.json")
5557
}
5658

5759
default_tags = {
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"COVID_19": [
3+
{ "start": "20251112", "end": "20260131" },
4+
{ "start": "20261101", "end": "20270131" }
5+
]
6+
}

infrastructure/environments/prod/locals.tf

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,8 @@ locals {
5252

5353
SSM_PARAMETER_STORE_TTL = 300
5454
PARAMETERS_SECRETS_EXTENSION_LOG_LEVEL = "INFO"
55+
56+
CAMPAIGNS = file("${path.module}/campaigns.json")
5557
}
5658

5759
default_tags = {
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"COVID_19": [
3+
{ "start": "20251112", "end": "20260131" },
4+
{ "start": "20261101", "end": "20270131" }
5+
]
6+
}

infrastructure/environments/test/locals.tf

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,8 @@ locals {
5050

5151
SSM_PARAMETER_STORE_TTL = 300
5252
PARAMETERS_SECRETS_EXTENSION_LOG_LEVEL = "INFO"
53+
54+
CAMPAIGNS = file("${path.module}/campaigns.json")
5355
}
5456

5557
default_tags = {

0 commit comments

Comments
 (0)