Skip to content

Commit

Permalink
Merge branch 'delete-dev-env-wf' of github.com:cds-snc/notification-t…
Browse files Browse the repository at this point in the history
…erraform into delete-dev-env-wf
  • Loading branch information
ben851 committed Oct 10, 2024
2 parents 1fb951a + 15d0e26 commit 981f3eb
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/infrastructure_version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.16.27
2.16.30
8 changes: 7 additions & 1 deletion aws/quicksight/dataset_notifications.tf
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ resource "aws_quicksight_data_set" "notifications" {
with notification_data as (
select
id as notification_id,
billable_units as notification_billable_units,
created_at as notification_created_at,
queue_name as notification_queue_name,
sent_at as notification_sent_at,
Expand All @@ -30,6 +31,7 @@ resource "aws_quicksight_data_set" "notifications" {
union
select
id as notification_id,
billable_units as notification_billable_units,
created_at as notification_created_at,
queue_name as notification_queue_name,
sent_at as notification_sent_at,
Expand Down Expand Up @@ -75,7 +77,7 @@ resource "aws_quicksight_data_set" "notifications" {
left outer join template_categories tc on tc.id = t.template_category_id
)
select
notification_id, notification_created_at, notification_sent_at, notification_status,
notification_id, notification_billable_units, notification_created_at, notification_sent_at, notification_status,
notification_queue_name, notification_type, notification_updated_at,
notification_reference, job_id, api_key_id, api_key_type,
s.*, t.*
Expand All @@ -88,6 +90,10 @@ resource "aws_quicksight_data_set" "notifications" {
name = "notification_id"
type = "STRING"
}
columns {
name = "notification_billable_units"
type = "INTEGER"
}
columns {
name = "notification_created_at"
type = "DATETIME"
Expand Down
2 changes: 2 additions & 0 deletions env/production/eks/terragrunt.hcl
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#PRODUCTION EKS VERSIONS: K8s Node Upgrade 1.30.4-20240917

terraform {
source = "${get_env("ENVIRONMENT") == "production" ? "git::https://github.com/cds-snc/notification-terraform//aws/eks?ref=v${get_env("INFRASTRUCTURE_VERSION")}" : "../../../aws//eks"}"
}
Expand Down

0 comments on commit 981f3eb

Please sign in to comment.