From f447c399a5c9f55a1320aace713c242e96502a81 Mon Sep 17 00:00:00 2001 From: Alis Akers Date: Wed, 11 Dec 2024 15:10:17 -0800 Subject: [PATCH] update to v1.7.6 --- terraform/implementation/ecs/README.md | 5 +++-- terraform/implementation/ecs/_variable.tf | 2 +- terraform/implementation/ecs/main.tf | 2 +- terraform/modules/oidc/_data.tf | 1 + 4 files changed, 6 insertions(+), 4 deletions(-) diff --git a/terraform/implementation/ecs/README.md b/terraform/implementation/ecs/README.md index bdb13b1..5301060 100644 --- a/terraform/implementation/ecs/README.md +++ b/terraform/implementation/ecs/README.md @@ -16,7 +16,7 @@ | Name | Source | Version | |------|--------|---------| -| [ecs](#module\_ecs) | CDCgov/dibbs-ecr-viewer/aws | 0.2.1 | +| [ecs](#module\_ecs) | ../../../../terraform-aws-dibbs-ecr-viewer | n/a | | [vpc](#module\_vpc) | terraform-aws-modules/vpc/aws | 5.16.0 | ## Resources @@ -24,6 +24,7 @@ | Name | Type | |------|------| | [aws_acm_certificate.this](https://registry.terraform.io/providers/hashicorp/aws/5.56.1/docs/data-sources/acm_certificate) | data source | +| [aws_caller_identity.current](https://registry.terraform.io/providers/hashicorp/aws/5.56.1/docs/data-sources/caller_identity) | data source | ## Inputs @@ -32,7 +33,7 @@ | [availability\_zones](#input\_availability\_zones) | The availability zones to use | `list(string)` |
[
"us-east-1a",
"us-east-1b",
"us-east-1c"
]
| no | | [internal](#input\_internal) | Flag to determine if the several AWS resources are public (intended for external access, public internet) or private (only intended to be accessed within your AWS VPC or avaiable with other means, a transit gateway for example). | `bool` | `false` | no | | [owner](#input\_owner) | The owner of the infrastructure | `string` | `"skylight"` | no | -| [phdi\_version](#input\_phdi\_version) | PHDI container image version | `string` | `"v1.6.9"` | no | +| [phdi\_version](#input\_phdi\_version) | PHDI container image version | `string` | `"main"` | no | | [private\_subnets](#input\_private\_subnets) | The private subnets | `list(string)` |
[
"176.24.1.0/24",
"176.24.3.0/24"
]
| no | | [project](#input\_project) | The project name | `string` | `"dibbs"` | no | | [public\_subnets](#input\_public\_subnets) | The public subnets | `list(string)` |
[
"176.24.2.0/24",
"176.24.4.0/24"
]
| no | diff --git a/terraform/implementation/ecs/_variable.tf b/terraform/implementation/ecs/_variable.tf index db4349d..e7b1544 100644 --- a/terraform/implementation/ecs/_variable.tf +++ b/terraform/implementation/ecs/_variable.tf @@ -20,7 +20,7 @@ variable "owner" { variable "phdi_version" { description = "PHDI container image version" type = string - default = "v1.7.3" + default = "v1.7.6" } variable "private_subnets" { diff --git a/terraform/implementation/ecs/main.tf b/terraform/implementation/ecs/main.tf index 900799e..c5ba30f 100644 --- a/terraform/implementation/ecs/main.tf +++ b/terraform/implementation/ecs/main.tf @@ -22,7 +22,7 @@ module "vpc" { module "ecs" { source = "CDCgov/dibbs-ecr-viewer/aws" - version = "0.2.1" + version = "0.3.1" # source = "../../../../terraform-aws-dibbs-ecr-viewer" public_subnet_ids = flatten(module.vpc.public_subnets) diff --git a/terraform/modules/oidc/_data.tf b/terraform/modules/oidc/_data.tf index 9d6b3b1..896be68 100644 --- a/terraform/modules/oidc/_data.tf +++ b/terraform/modules/oidc/_data.tf @@ -252,6 +252,7 @@ data "aws_iam_policy_document" "resource_tags_update_actions" { "elasticloadbalancing:ModifyLoadBalancerAttributes", "elasticloadbalancing:ModifyTargetGroupAttributes", "elasticloadbalancing:RemoveTags", + "elasticloadbalancing:ModifyRule", "ecs:RegisterTaskDefinition", "ecs:UpdateService", "ecs:TagResource",