Skip to content

Commit

Permalink
build: prepare for 0.8.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
DanStough committed Jul 5, 2024
1 parent 7262850 commit 5f3a768
Show file tree
Hide file tree
Showing 27 changed files with 54 additions and 47 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/reusable-ecs-acceptance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ on:
consul-version:
required: false
type: string
default: "1.18.0"
default: "1.18.2"
enable-hcp:
description: "Whether to create a HCP cluster for running acceptance tests"
required: true
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/terraform-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
- name: acceptance-1.18-FARGATE
enable-hcp: false
launch-type: FARGATE
consul-version: 1.18.0
consul-version: 1.18.2
fail-fast: false
uses: ./.github/workflows/reusable-ecs-acceptance.yml
with:
Expand Down Expand Up @@ -89,7 +89,7 @@ jobs:
- name: acceptance-1.18-EC2
enable-hcp: false
launch-type: EC2
consul-version: 1.18.0
consul-version: 1.18.2
fail-fast: false
uses: ./.github/workflows/reusable-ecs-acceptance.yml
with:
Expand All @@ -98,4 +98,4 @@ jobs:
launch-type: ${{ matrix.launch-type }}
enable-hcp: ${{ matrix.enable-hcp }}
consul-version: ${{ matrix.consul-version }}
secrets: inherit
secrets: inherit
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## 0.8.1 (July 8, 2024)

IMPROVEMENTS
* Bump Consul image to `1.18.2`[[GH-320](https://github.com/hashicorp/terraform-aws-consul-ecs/pull/320)]
* Bump Consul Dataplane image to `1.4.2` [[GH-320](https://github.com/hashicorp/terraform-aws-consul-ecs/pull/320)]
* Bump Consul ECS image to `0.8.1` [[GH-320](https://github.com/hashicorp/terraform-aws-consul-ecs/pull/320)]

## 0.8.0 (Feb 29, 2024)

BREAKING CHANGES
Expand Down
4 changes: 2 additions & 2 deletions examples/admin-partitions/terraform/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ variable "tags" {
variable "consul_ecs_image" {
description = "Consul ECS image to use."
type = string
default = "hashicorp/consul-ecs:0.8.0"
default = "hashicorp/consul-ecs:0.8.1"
}

variable "consul_dataplane_image" {
description = "consul-dataplane Docker image."
type = string
default = "hashicorp/consul-dataplane:1.4.0"
default = "hashicorp/consul-dataplane:1.4.2"
}

variable "client_partition" {
Expand Down
2 changes: 1 addition & 1 deletion examples/cluster-peering/gateway/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -77,5 +77,5 @@ variable "additional_task_role_policies" {
variable "consul_ecs_image" {
description = "Consul ECS image to use in all tasks."
type = string
default = "hashicorp/consul-ecs:0.8.0"
default = "hashicorp/consul-ecs:0.8.1"
}
2 changes: 1 addition & 1 deletion examples/cluster-peering/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ variable "lb_ingress_ip" {
variable "consul_ecs_image" {
description = "Consul ECS image to use in all tasks."
type = string
default = "hashicorp/consul-ecs:0.8.0"
default = "hashicorp/consul-ecs:0.8.1"
}

variable "consul_server_startup_timeout" {
Expand Down
4 changes: 2 additions & 2 deletions examples/locality-aware-routing/datacenter/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ variable "consul_server_startup_timeout" {
variable "consul_image" {
description = "Consul Docker image."
type = string
default = "hashicorp/consul-enterprise:1.18.0-ent"
default = "hashicorp/consul-enterprise:1.18.2-ent"
}

variable "consul_license" {
Expand All @@ -67,4 +67,4 @@ variable "ecs_cluster_arn" {
variable "log_group_name" {
description = "Name of the CloudWatch log group where the server task's logs will be pushed to."
type = string
}
}
6 changes: 3 additions & 3 deletions examples/locality-aware-routing/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ variable "lb_ingress_ip" {
variable "consul_ecs_image" {
description = "Consul ECS image to use in all tasks."
type = string
default = "hashicorp/consul-ecs:0.8.0"
default = "hashicorp/consul-ecs:0.8.1"
}

variable "consul_server_startup_timeout" {
Expand All @@ -38,5 +38,5 @@ variable "consul_server_startup_timeout" {
variable "consul_image" {
description = "Consul Docker image."
type = string
default = "hashicorp/consul-enterprise:1.18.0-ent"
}
default = "hashicorp/consul-enterprise:1.18.2-ent"
}
2 changes: 1 addition & 1 deletion examples/mesh-gateways/gateway/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -83,5 +83,5 @@ variable "additional_task_role_policies" {
variable "consul_ecs_image" {
description = "Consul ECS image to use in all tasks."
type = string
default = "hashicorp/consul-ecs:0.8.0"
default = "hashicorp/consul-ecs:0.8.1"
}
2 changes: 1 addition & 1 deletion examples/mesh-gateways/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ variable "lb_ingress_ip" {
variable "consul_ecs_image" {
description = "Consul ECS image to use in all tasks."
type = string
default = "hashicorp/consul-ecs:0.8.0"
default = "hashicorp/consul-ecs:0.8.1"
}

variable "consul_server_startup_timeout" {
Expand Down
4 changes: 2 additions & 2 deletions examples/service-sameness/datacenter/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ variable "consul_server_startup_timeout" {
variable "consul_image" {
description = "Consul Docker image."
type = string
default = "public.ecr.aws/hashicorp/consul-enterprise:1.18.0-ent"
default = "public.ecr.aws/hashicorp/consul-enterprise:1.18.2-ent"
}

variable "consul_license" {
Expand All @@ -67,4 +67,4 @@ variable "ecs_cluster_arn" {
variable "log_group_name" {
description = "Name of the CloudWatch log group where the server task's logs will be pushed to."
type = string
}
}
2 changes: 1 addition & 1 deletion examples/service-sameness/gateway/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ variable "additional_task_role_policies" {
variable "consul_ecs_image" {
description = "Consul ECS image to use in all tasks."
type = string
default = "hashicorp/consul-ecs:0.8.0"
default = "hashicorp/consul-ecs:0.8.1"
}

variable "consul_server_lb_dns_name" {
Expand Down
4 changes: 2 additions & 2 deletions examples/service-sameness/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ variable "lb_ingress_ip" {
variable "consul_ecs_image" {
description = "Consul ECS image to use in all tasks."
type = string
default = "hashicorp/consul-ecs:0.8.0"
default = "hashicorp/consul-ecs:0.8.1"
}

variable "consul_server_startup_timeout" {
Expand All @@ -56,4 +56,4 @@ variable "dc1_consul_admin_partition" {
description = "The name of the admin partition that will be created in datacenter one's Consul server"
type = string
default = "part-1"
}
}
4 changes: 2 additions & 2 deletions examples/terminating-gateway-tls/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ variable "lb_ingress_ip" {
variable "consul_image" {
type = string
description = "hashicorp consul image"
default = "hashicorp/consul:1.18.0"
default = "hashicorp/consul:1.18.2"
}

variable "certs_mount_path" {
Expand All @@ -40,4 +40,4 @@ variable "cert_paths" {
key_path = "/efs/external-app/ca.key"
ca_path = "/efs/external-app/ca.cert"
}
}
}
4 changes: 2 additions & 2 deletions modules/controller/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
variable "consul_ecs_image" {
description = "consul-ecs Docker image."
type = string
default = "hashicorp/consul-ecs:0.8.0"
default = "hashicorp/consul-ecs:0.8.1"
}

variable "ecs_cluster_arn" {
Expand Down Expand Up @@ -161,4 +161,4 @@ variable "grpc_config" {
contains(["port", "tls", "tlsServerName"], key)
])
}
}
}
4 changes: 2 additions & 2 deletions modules/dev-server/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ variable "lb_ingress_rule_security_groups" {
variable "consul_image" {
description = "Consul Docker image."
type = string
default = "hashicorp/consul:1.18.0"
default = "hashicorp/consul:1.18.2"
}

variable "consul_license" {
Expand Down Expand Up @@ -223,4 +223,4 @@ variable "consul_server_startup_timeout" {
description = "The number of seconds to wait for the Consul server to become available via its ALB before continuing. The default is 300s (5m), which should be enough in most cases."
type = number
default = 300
}
}
2 changes: 1 addition & 1 deletion modules/gateway-task/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ data "aws_region" "current" {}

locals {
// Must be updated for each release, and after each release to return to a "-dev" version.
version_string = "0.8.0"
version_string = "0.8.1"

consul_data_volume_name = "consul_data"
consul_data_mount = {
Expand Down
6 changes: 3 additions & 3 deletions modules/gateway-task/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ variable "additional_execution_role_policies" {
variable "consul_image" {
description = "Consul Docker image."
type = string
default = "hashicorp/consul:1.18.0"
default = "hashicorp/consul:1.18.2"
}

variable "consul_server_hosts" {
Expand All @@ -108,13 +108,13 @@ variable "skip_server_watch" {
variable "consul_ecs_image" {
description = "consul-ecs Docker image."
type = string
default = "hashicorp/consul-ecs:0.8.0"
default = "hashicorp/consul-ecs:0.8.1"
}

variable "consul_dataplane_image" {
description = "consul-dataplane Docker image."
type = string
default = "hashicorp/consul-dataplane:1.4.0"
default = "hashicorp/consul-dataplane:1.4.2"
}

variable "envoy_readiness_port" {
Expand Down
4 changes: 2 additions & 2 deletions modules/mesh-task/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ data "aws_region" "current" {}

locals {
// Must be updated for each release, and after each release to return to a "-dev" version.
version_string = "0.8.0"
version_string = "0.8.1"

consul_data_volume_name = "consul_data"
consul_data_mount = {
Expand Down Expand Up @@ -317,4 +317,4 @@ resource "aws_ecs_task_definition" "this" {
)
)
)
}
}
6 changes: 3 additions & 3 deletions modules/mesh-task/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -145,13 +145,13 @@ variable "outbound_only" {
variable "consul_ecs_image" {
description = "consul-ecs Docker image."
type = string
default = "hashicorp/consul-ecs:0.8.0"
default = "hashicorp/consul-ecs:0.8.1"
}

variable "consul_dataplane_image" {
description = "consul-dataplane Docker image."
type = string
default = "hashicorp/consul-dataplane:1.4.0"
default = "hashicorp/consul-dataplane:1.4.2"
}

variable "envoy_public_listener_port" {
Expand Down Expand Up @@ -509,4 +509,4 @@ variable "exclude_uids" {
description = "List of additional UIDs to exclude from outbound traffic redirection."
type = list(string)
default = []
}
}
4 changes: 2 additions & 2 deletions test/acceptance/tests/basic/terraform/basic-install/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ variable "launch_type" {
variable "consul_ecs_image" {
description = "Consul ECS image to use."
type = string
default = "hashicorp/consul-ecs:0.8.0"
default = "hashicorp/consul-ecs:0.8.1"
}

variable "server_service_name" {
Expand Down Expand Up @@ -462,4 +462,4 @@ locals {
awslogs-stream-prefix = "test_client_${var.suffix}"
}
}
}
}
2 changes: 1 addition & 1 deletion test/acceptance/tests/hcp/terraform/ap-tproxy/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ variable "consul_image" {
variable "consul_ecs_image" {
description = "Consul ECS image to use."
type = string
default = "hashicorp/consul-ecs:0.8.0"
default = "hashicorp/consul-ecs:0.8.1"
}

variable "consul_server_address" {
Expand Down
2 changes: 1 addition & 1 deletion test/acceptance/tests/hcp/terraform/ap/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ variable "consul_image" {
variable "consul_ecs_image" {
description = "Consul ECS image to use."
type = string
default = "hashicorp/consul-ecs:0.8.0"
default = "hashicorp/consul-ecs:0.8.1"
}

variable "consul_server_address" {
Expand Down
4 changes: 2 additions & 2 deletions test/acceptance/tests/hcp/terraform/hcp-install/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ variable "consul_image" {
variable "consul_ecs_image" {
description = "Consul ECS image to use."
type = string
default = "hashicorp/consul-ecs:0.8.0"
default = "hashicorp/consul-ecs:0.8.1"
}

variable "consul_server_address" {
Expand Down Expand Up @@ -95,4 +95,4 @@ variable "grpc_port" {
description = "Port where the server's gRPC interface is exposed"
type = number
default = 8502
}
}
4 changes: 2 additions & 2 deletions test/acceptance/tests/hcp/terraform/ns-tproxy/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ variable "consul_image" {
variable "consul_ecs_image" {
description = "Consul ECS image to use."
type = string
default = "hashicorp/consul-ecs:0.8.0"
default = "hashicorp/consul-ecs:0.8.1"
}

variable "consul_server_address" {
Expand Down Expand Up @@ -106,4 +106,4 @@ variable "grpc_port" {
description = "Port where the server's gRPC interface is exposed"
type = number
default = 8502
}
}
4 changes: 2 additions & 2 deletions test/acceptance/tests/hcp/terraform/ns/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ variable "consul_image" {
variable "consul_ecs_image" {
description = "Consul ECS image to use."
type = string
default = "hashicorp/consul-ecs:0.8.0"
default = "hashicorp/consul-ecs:0.8.1"
}

variable "consul_server_address" {
Expand Down Expand Up @@ -106,4 +106,4 @@ variable "grpc_port" {
description = "Port where the server's gRPC interface is exposed"
type = number
default = 8502
}
}
4 changes: 2 additions & 2 deletions test/acceptance/tests/tproxy/terraform/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ variable "launch_type" {
variable "consul_ecs_image" {
description = "Consul ECS image to use."
type = string
default = "hashicorp/consul-ecs:0.8.0"
default = "hashicorp/consul-ecs:0.8.1"
}

variable "server_service_name" {
Expand Down Expand Up @@ -426,4 +426,4 @@ locals {
awslogs-stream-prefix = "test_client_${var.suffix}"
}
}
}
}

0 comments on commit 5f3a768

Please sign in to comment.