Skip to content

Commit

Permalink
Support terraform v0.14 in redash (#27)
Browse files Browse the repository at this point in the history
* support terraform v0.14 on redash

* Use the latest version of terraform-aws-ecs-container-definition
  • Loading branch information
dekachiri committed Apr 1, 2021
1 parent 303b15e commit 4ee5130
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
12 changes: 6 additions & 6 deletions aws/redash/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions aws/redash/container_definitions.tf
@@ -1,7 +1,7 @@
# Server
module "server_container_definitions" {
source = "cloudposse/ecs-container-definition/aws"
version = "0.42.0"
version = "0.56.0"

container_name = local.container_names["server"]
container_image = var.container_image_url
Expand All @@ -28,7 +28,7 @@ module "server_container_definitions" {
# Worker
module "worker_container_definition" {
source = "cloudposse/ecs-container-definition/aws"
version = "0.42.0"
version = "0.56.0"

container_name = local.container_names["worker"]
container_image = var.container_image_url
Expand All @@ -53,7 +53,7 @@ module "worker_container_definition" {
# DB Create
module "db_create_container_definition" {
source = "cloudposse/ecs-container-definition/aws"
version = "0.42.0"
version = "0.56.0"

container_name = local.container_names["db_create"]
container_image = var.container_image_url
Expand All @@ -78,7 +78,7 @@ module "db_create_container_definition" {
# DB Migrate
module "db_migrate_container_definition" {
source = "cloudposse/ecs-container-definition/aws"
version = "0.42.0"
version = "0.56.0"

container_name = local.container_names["db_migrate"]
container_image = var.container_image_url
Expand All @@ -103,7 +103,7 @@ module "db_migrate_container_definition" {
# DB Upgrade
module "db_upgrade_container_definition" {
source = "cloudposse/ecs-container-definition/aws"
version = "0.42.0"
version = "0.56.0"

container_name = local.container_names["db_upgrade"]
container_image = var.container_image_url
Expand Down
2 changes: 1 addition & 1 deletion aws/redash/versions.tf
@@ -1,3 +1,3 @@
terraform {
required_version = ">= 0.12.2, < 0.14"
required_version = ">= 0.12.2, < 0.15"
}

0 comments on commit 4ee5130

Please sign in to comment.