-
Notifications
You must be signed in to change notification settings - Fork 0
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
Docker and Healthcheck adjustments #209
Conversation
…and adjusting the timeout of the load balancer
Staging: ssm✅ Terraform Init: Plan: 0 to add, 1 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_ssm_parameter.saas_app_config will be updated in-place
~ resource "aws_ssm_parameter" "saas_app_config" {
id = "saas_app_config"
+ insecure_value = (known after apply)
name = "saas_app_config"
tags = {
"CostCentre" = "saas-procurement"
"Terraform" = "true"
}
~ value = (sensitive value)
~ version = 11 -> (known after apply)
# (8 unchanged attributes hidden)
}
Plan: 0 to add, 1 to change, 0 to destroy.
Changes to Outputs:
# Warning: this attribute value will be marked as sensitive and will not
# display in UI output after applying this change.
~ saas_app_config_value = (sensitive value)
─────────────────────────────────────────────────────────────────────────────
Saved the plan to: plan.tfplan
To perform exactly these actions, run the following command to apply:
terraform apply "plan.tfplan"
Releasing state lock. This may take a few moments...
Show Conftest results18 tests, 18 passed, 0 warnings, 0 failures, 0 exceptions
|
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.
🎉
Staging: rds✅ Terraform Init: Plan: 0 to add, 1 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:
# module.rds_cluster.aws_security_group.rds_proxy will be updated in-place
~ resource "aws_security_group" "rds_proxy" {
id = "sg-051638cd60aef88c3"
~ ingress = [
- {
- cidr_blocks = []
- description = ""
- from_port = 5432
- ipv6_cidr_blocks = []
- prefix_list_ids = []
- protocol = "tcp"
- security_groups = []
- self = true
- to_port = 5432
},
- {
- cidr_blocks = []
- description = "Allow RDS cluster to receive requests from ECS"
- from_port = 5432
- ipv6_cidr_blocks = []
- prefix_list_ids = []
- protocol = "tcp"
- security_groups = [
- "sg-0d1ca7e7e561a219f",
]
- self = false
- to_port = 5432
},
+ {
+ cidr_blocks = []
+ description = null
+ from_port = 5432
+ ipv6_cidr_blocks = []
+ prefix_list_ids = []
+ protocol = "tcp"
+ security_groups = []
+ self = true
+ to_port = 5432
},
]
name = "saas-procurement-database_rds_proxy_sg"
tags = {
"CostCentre" = "saas-procurement"
"Name" = "saas-procurement-database_rds_proxy_sg"
"Terraform" = "true"
}
# (7 unchanged attributes hidden)
}
Plan: 0 to add, 1 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 results18 tests, 18 passed, 0 warnings, 0 failures, 0 exceptions
|
Staging: ecs✅ Terraform Init: Plan: 0 to add, 2 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_ecs_service.saas-procurement-app-service will be updated in-place
~ resource "aws_ecs_service" "saas-procurement-app-service" {
id = "arn:aws:ecs:ca-central-1:394954348146:service/saas-procurement-cluster/saas_procurement-service"
name = "saas_procurement-service"
tags = {
"CostCentre" = "saas-procurement"
}
~ task_definition = "arn:aws:ecs:ca-central-1:394954348146:task-definition/saas-procurement-task:14" -> "arn:aws:ecs:ca-central-1:394954348146:task-definition/saas-procurement-task:13"
# (15 unchanged attributes hidden)
# (4 unchanged blocks hidden)
}
# aws_security_group.ecs_tasks will be updated in-place
~ resource "aws_security_group" "ecs_tasks" {
~ egress = [
- {
- cidr_blocks = []
- description = "Allow ECS to talk to the RDS cluster"
- from_port = 5432
- ipv6_cidr_blocks = []
- prefix_list_ids = []
- protocol = "tcp"
- security_groups = [
- "sg-051638cd60aef88c3",
]
- self = false
- to_port = 5432
},
# (1 unchanged element hidden)
]
id = "sg-0d1ca7e7e561a219f"
name = "saas-procurement-security-group"
tags = {
"CostCentre" = "saas-procurement"
}
# (7 unchanged attributes hidden)
}
Plan: 0 to add, 2 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_cloudwatch_log_group.saas_procurement_group"]
WARN - plan.json - main - Missing Common Tags: ["aws_ecs_cluster.saas_procurement"]
WARN - plan.json - main - Missing Common Tags: ["aws_ecs_service.saas-procurement-app-service"]
WARN - plan.json - main - Missing Common Tags: ["aws_ecs_task_definition.saas_procurement"]
WARN - plan.json - main - Missing Common Tags: ["aws_security_group.ecs_tasks"]
WARN - plan.json - main - Missing Common Tags: ["module.sentinel_forwarder.aws_cloudwatch_log_group.sentinel_forwarder_lambda"]
WARN - plan.json - main - Missing Common Tags: ["module.sentinel_forwarder.aws_iam_policy.sentinel_forwarder_lambda"]
WARN - plan.json - main - Missing Common Tags: ["module.sentinel_forwarder.aws_iam_role.sentinel_forwarder_lambda"]
WARN - plan.json - main - Missing Common Tags: ["module.sentinel_forwarder.aws_lambda_function.sentinel_forwarder"]
26 tests, 17 passed, 9 warnings, 0 failures, 0 exceptions
|
Summary | Résumé
Changes made: