-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Release 2.14.1 #1485
Merged
Merged
Release 2.14.1 #1485
Conversation
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
Production: quicksight✅ Terraform Init: Plan: 0 to add, 3 to change, 0 to destroy Show summary
Show planResource actions are indicated with the following symbols:
~ update in-place
Terraform will perform the following actions:
# aws_quicksight_data_set.notifications will be updated in-place
~ resource "aws_quicksight_data_set" "notifications" {
id = "296255494825,notifications"
name = "Notifications"
tags = {}
# (6 unchanged attributes hidden)
- physical_table_map {
- physical_table_map_id = "notifications" -> null
- custom_sql {
- data_source_arn = "arn:aws:quicksight:ca-central-1:296255494825:datasource/NotificationCanadaCaproduction" -> null
- name = "notifications" -> null
- sql_query = <<-EOT
with notification_data as (
select
id as notification_id,
created_at as notification_created_at,
queue_name as notification_queue_name,
sent_at as notification_sent_at,
notification_status,
notification_type,
updated_at notification_updated_at,
job_id,
api_key_id,
key_type as api_key_type,
service_id,
template_id,
reference as notification_reference
from notifications
union
select
id as notification_id,
created_at as notification_created_at,
queue_name as notification_queue_name,
sent_at as notification_sent_at,
notification_status,
notification_type,
updated_at notification_updated_at,
job_id,
api_key_id,
key_type as api_key_type,
service_id,
template_id,
reference as notification_reference
from notification_history
),
service_data as (
select
s.id as service_id,
s.active as service_active,
count_as_live as service_count_as_live,
s.go_live_at as service_go_live_at,
s.name as service_name,
s.message_limit as service_message_limit,
s.rate_limit as service_rate_limit,
s.sms_daily_limit as service_sms_daily_limit,
o.name as organisation_name,
s.organisation_id
from services s join organisation o on s.organisation_id = o.id
),
template_data as (
select
id as template_id,
created_at as template_created_at,
name as template_name,
updated_at as template_updated_at,
version as template_version
from templates
)
select
notification_id, 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.*
from notification_data n
join service_data s on n.service_id = s.service_id
join template_data t on n.template_id = t.template_id
EOT -> null
- columns {
- name = "notification_id" -> null
- type = "STRING" -> null
}
- columns {
- name = "notification_created_at" -> null
- type = "DATETIME" -> null
}
- columns {
- name = "notification_sent_at" -> null
- type = "DATETIME" -> null
}
- columns {
- name = "notification_updated_at" -> null
- type = "DATETIME" -> null
}
- columns {
- name = "notification_queue_name" -> null
- type = "STRING" -> null
}
- columns {
- name = "notification_status" -> null
- type = "STRING" -> null
}
- columns {
- name = "notification_type" -> null
- type = "STRING" -> null
}
- columns {
- name = "notification_reference" -> null
- type = "STRING" -> null
}
- columns {
- name = "job_id" -> null
- type = "STRING" -> null
}
- columns {
- name = "api_key_id" -> null
- type = "STRING" -> null
}
- columns {
- name = "api_key_type" -> null
- type = "STRING" -> null
}
- columns {
- name = "service_id" -> null
- type = "STRING" -> null
}
- columns {
- name = "service_active" -> null
- type = "BOOLEAN" -> null
}
- columns {
- name = "service_count_as_live" -> null
- type = "BOOLEAN" -> null
}
- columns {
- name = "service_go_live_at" -> null
- type = "DATETIME" -> null
}
- columns {
- name = "service_name" -> null
- type = "STRING" -> null
}
- columns {
- name = "service_message_limit" -> null
- type = "INTEGER" -> null
}
- columns {
- name = "service_rate_limit" -> null
- type = "INTEGER" -> null
}
- columns {
- name = "service_sms_daily_limit" -> null
- type = "INTEGER" -> null
}
- columns {
- name = "organisation_name" -> null
- type = "STRING" -> null
}
- columns {
- name = "organisation_id" -> null
- type = "STRING" -> null
}
- columns {
- name = "template_id" -> null
- type = "STRING" -> null
}
- columns {
- name = "template_created_at" -> null
- type = "DATETIME" -> null
}
- columns {
- name = "template_name" -> null
- type = "STRING" -> null
}
- columns {
- name = "template_updated_at" -> null
- type = "DATETIME" -> null
}
- columns {
- name = "template_version" -> null
- type = "INTEGER" -> null
}
}
}
+ physical_table_map {
+ physical_table_map_id = "notifications"
+ custom_sql {
+ data_source_arn = "arn:aws:quicksight:ca-central-1:296255494825:datasource/NotificationCanadaCaproduction"
+ name = "notifications"
+ sql_query = <<-EOT
with notification_data as (
select
id as notification_id,
created_at as notification_created_at,
queue_name as notification_queue_name,
sent_at as notification_sent_at,
notification_status,
notification_type,
updated_at notification_updated_at,
job_id,
api_key_id,
key_type as api_key_type,
service_id,
template_id,
reference as notification_reference
from notifications
union
select
id as notification_id,
created_at as notification_created_at,
queue_name as notification_queue_name,
sent_at as notification_sent_at,
notification_status,
notification_type,
updated_at notification_updated_at,
job_id,
api_key_id,
key_type as api_key_type,
service_id,
template_id,
reference as notification_reference
from notification_history
),
service_data as (
select
s.id as service_id,
s.active as service_active,
count_as_live as service_count_as_live,
s.go_live_at as service_go_live_at,
s.name as service_name,
s.message_limit as service_message_limit,
s.rate_limit as service_rate_limit,
s.sms_daily_limit as service_sms_daily_limit,
o.name as organisation_name,
s.organisation_id
from services s join organisation o on s.organisation_id = o.id
),
template_data as (
select
t.id as template_id,
t.created_at as template_created_at,
t.name as template_name,
t.updated_at as template_updated_at,
t.version as template_version,
tc.id as tc_id,
tc.name_en as tc_name_en,
tc.name_fr as tc_name_fr,
tc.email_process_type as tc_email_process_type,
tc.sms_process_type as tc_sms_process_type,
tc.sms_sending_vehicle as tc_sms_sending_vehicle
from templates t
join template_categories tc on tc.id = t.template_category_id
)
select
notification_id, 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.*
from notification_data n
join service_data s on n.service_id = s.service_id
join template_data t on n.template_id = t.template_id
EOT
+ columns {
+ name = "notification_id"
+ type = "STRING"
}
+ columns {
+ name = "notification_created_at"
+ type = "DATETIME"
}
+ columns {
+ name = "notification_sent_at"
+ type = "DATETIME"
}
+ columns {
+ name = "notification_updated_at"
+ type = "DATETIME"
}
+ columns {
+ name = "notification_queue_name"
+ type = "STRING"
}
+ columns {
+ name = "notification_status"
+ type = "STRING"
}
+ columns {
+ name = "notification_type"
+ type = "STRING"
}
+ columns {
+ name = "notification_reference"
+ type = "STRING"
}
+ columns {
+ name = "job_id"
+ type = "STRING"
}
+ columns {
+ name = "api_key_id"
+ type = "STRING"
}
+ columns {
+ name = "api_key_type"
+ type = "STRING"
}
+ columns {
+ name = "service_id"
+ type = "STRING"
}
+ columns {
+ name = "service_active"
+ type = "BOOLEAN"
}
+ columns {
+ name = "service_count_as_live"
+ type = "BOOLEAN"
}
+ columns {
+ name = "service_go_live_at"
+ type = "DATETIME"
}
+ columns {
+ name = "service_name"
+ type = "STRING"
}
+ columns {
+ name = "service_message_limit"
+ type = "INTEGER"
}
+ columns {
+ name = "service_rate_limit"
+ type = "INTEGER"
}
+ columns {
+ name = "service_sms_daily_limit"
+ type = "INTEGER"
}
+ columns {
+ name = "organisation_name"
+ type = "STRING"
}
+ columns {
+ name = "organisation_id"
+ type = "STRING"
}
+ columns {
+ name = "template_id"
+ type = "STRING"
}
+ columns {
+ name = "template_created_at"
+ type = "DATETIME"
}
+ columns {
+ name = "template_name"
+ type = "STRING"
}
+ columns {
+ name = "template_updated_at"
+ type = "DATETIME"
}
+ columns {
+ name = "template_version"
+ type = "INTEGER"
}
+ columns {
+ name = "tc_id"
+ type = "STRING"
}
+ columns {
+ name = "tc_name_en"
+ type = "STRING"
}
+ columns {
+ name = "tc_name_fr"
+ type = "STRING"
}
+ columns {
+ name = "tc_email_process_type"
+ type = "STRING"
}
+ columns {
+ name = "tc_sms_process_type"
+ type = "STRING"
}
+ columns {
+ name = "tc_sms_sending_vehicle"
+ type = "STRING"
}
}
}
# (4 unchanged blocks hidden)
}
# aws_quicksight_data_set.services will be updated in-place
~ resource "aws_quicksight_data_set" "services" {
id = "296255494825,services"
name = "Services"
tags = {}
# (6 unchanged attributes hidden)
- physical_table_map {
- physical_table_map_id = "services" -> null
- relational_table {
- data_source_arn = "arn:aws:quicksight:ca-central-1:296255494825:datasource/NotificationCanadaCaproduction" -> null
- name = "services" -> null
- input_columns {
- name = "id" -> null
- type = "STRING" -> null
}
- input_columns {
- name = "created_at" -> null
- type = "DATETIME" -> null
}
- input_columns {
- name = "updated_at" -> null
- type = "DATETIME" -> null
}
- input_columns {
- name = "active" -> null
- type = "BOOLEAN" -> null
}
- input_columns {
- name = "count_as_live" -> null
- type = "BOOLEAN" -> null
}
- input_columns {
- name = "go_live_at" -> null
- type = "DATETIME" -> null
}
- input_columns {
- name = "restricted" -> null
- type = "STRING" -> null
}
- input_columns {
- name = "name" -> null
- type = "STRING" -> null
}
- input_columns {
- name = "organisation_id" -> null
- type = "STRING" -> null
}
- input_columns {
- name = "message_limit" -> null
- type = "INTEGER" -> null
}
- input_columns {
- name = "rate_limit" -> null
- type = "INTEGER" -> null
}
- input_columns {
- name = "sms_daily_limit" -> null
- type = "INTEGER" -> null
}
}
}
+ physical_table_map {
+ physical_table_map_id = "services"
+ custom_sql {
+ data_source_arn = "arn:aws:quicksight:ca-central-1:296255494825:datasource/NotificationCanadaCaproduction"
+ name = "services"
+ sql_query = <<-EOT
select s.id, s.created_at, s.updated_at, s.active, count_as_live,
go_live_at, restricted, s.name, organisation_id, o.name as organisation_name,
message_limit, rate_limit, sms_daily_limit
from services s inner join organisation o on s.organisation_id = o.id
EOT
+ columns {
+ name = "id"
+ type = "STRING"
}
+ columns {
+ name = "created_at"
+ type = "DATETIME"
}
+ columns {
+ name = "updated_at"
+ type = "DATETIME"
}
+ columns {
+ name = "active"
+ type = "BOOLEAN"
}
+ columns {
+ name = "count_as_live"
+ type = "BOOLEAN"
}
+ columns {
+ name = "go_live_at"
+ type = "DATETIME"
}
+ columns {
+ name = "restricted"
+ type = "STRING"
}
+ columns {
+ name = "name"
+ type = "STRING"
}
+ columns {
+ name = "organisation_id"
+ type = "STRING"
}
+ columns {
+ name = "organisation_name"
+ type = "STRING"
}
+ columns {
+ name = "message_limit"
+ type = "INTEGER"
}
+ columns {
+ name = "rate_limit"
+ type = "INTEGER"
}
+ columns {
+ name = "sms_daily_limit"
+ type = "INTEGER"
}
}
}
# (4 unchanged blocks hidden)
}
# aws_s3_object.manifest_file will be updated in-place
~ resource "aws_s3_object" "manifest_file" {
~ etag = "3696c2177cd9e1be28ff597c24b10ae0" -> "221f592f333f2fc284626cfdb8c4bc80"
id = "quicksight/s3-manifest-sms-usage.json"
tags = {}
+ version_id = (known after apply)
# (12 unchanged attributes hidden)
}
Plan: 0 to add, 3 to change, 0 to destroy.
─────────────────────────────────────────────────────────────────────────────
Saved the plan to: plan.tfplan
To perform exactly these actions, run the following command to apply:
terraform apply "plan.tfplan"
Show Conftest resultsWARN - plan.json - main - Missing Common Tags: ["aws_cloudformation_stack.sms-usage-notifications"]
WARN - plan.json - main - Missing Common Tags: ["aws_iam_policy.quicksight-rds"]
WARN - plan.json - main - Missing Common Tags: ["aws_iam_policy.quicksight-s3-usage"]
WARN - plan.json - main - Missing Common Tags: ["aws_iam_policy.quicksight_vpc_connection_ec2"]
WARN - plan.json - main - Missing Common Tags: ["aws_iam_policy.quicksight_vpc_connection_iam"]
WARN - plan.json - main - Missing Common Tags: ["aws_iam_role.quicksight"]
WARN - plan.json - main - Missing Common Tags: ["aws_iam_role.vpc_connection_role"]
WARN - plan.json - main - Missing Common Tags: ["aws_quicksight_data_set.jobs"]
WARN - plan.json - main - Missing Common Tags: ["aws_quicksight_data_set.login_events"]
WARN - plan.json - main - Missing Common Tags: ["aws_quicksight_data_set.notifications"]
WARN - plan.json - main - Missing Common Tags: ["aws_quicksight_data_set.organisation"]
WARN - plan.json - main - Missing Common Tags: ["aws_quicksight_data_set.services"]
WARN - plan.json - main - Missing Common Tags: ["aws_quicksight_data_set.sms_usage"]
WARN - plan.json - main - Missing Common Tags: ["aws_quicksight_data_set.templates"]
WARN - plan.json - main - Missing Common Tags: ["aws_quicksight_data_set.users"]
WARN - plan.json - main - Missing Common Tags: ["aws_quicksight_data_source.rds"]
WARN - plan.json - main - Missing Common Tags: ["aws_quicksight_data_source.s3_sms_usage"]
WARN - plan.json - main - Missing Common Tags: ["aws_quicksight_vpc_connection.rds"]
WARN - plan.json - main - Missing Common Tags: ["aws_s3_object.manifest_file"]
38 tests, 19 passed, 19 warnings, 0 failures, 0 exceptions
|
sastels
approved these changes
Aug 6, 2024
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary | Résumé
Release 2.14.1
Related Issues | Cartes liées
services
quicksight data set #1483Reviewer checklist | Liste de vérification du réviseur