Skip to content
This repository has been archived by the owner on Sep 13, 2022. It is now read-only.

Commit

Permalink
Upgrade concourse to 7.7.1
Browse files Browse the repository at this point in the history
This is to fix a bug with 7.7.0 where pipelines could get automatically archived

As per https://skyscrapers.slack.com/archives/C04P0T47V/p1649752571341189
  • Loading branch information
iuriaranda committed Apr 12, 2022
1 parent 9128398 commit 4ace9bf
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ The following resources are created:
| concourse_hostname | Hostname on which concourse will be available, this hostname needs to point to the ELB. If ommitted, the hostname of the AWS ELB will be used instead | `string` | `null` | no |
| concourse_prometheus_bind_ip | IP address where Concourse will listen for the Prometheus scraper | `string` | `"0.0.0.0"` | no |
| concourse_prometheus_bind_port | Port where Concourse will listen for the Prometheus scraper | `string` | `"9391"` | no |
| concourse_version | Concourse CI version to use. Defaults to the latest tested version | `string` | `"7.7.0"` | no |
| concourse_version | Concourse CI version to use. Defaults to the latest tested version | `string` | `"7.7.1"` | no |
| concourse_version_override | Variable to override the default Concourse version. Leave it empty to fallback to `concourse_version`. Useful if you want to default to the module's default but also give the users the option to override it | `string` | `null` | no |
| concourse_web_instance_count | Number of containers running Concourse web | `number` | `1` | no |
| container_cpu | The number of cpu units to reserve for the container. This parameter maps to CpuShares in the Create a container section of the Docker Remote API | `number` | `256` | no |
Expand Down Expand Up @@ -147,7 +147,7 @@ The following resources will be created:
| vpc_id | The VPC id where to deploy the worker instances | `string` | n/a | yes |
| additional_security_group_ids | Additional security group ids to attach to the worker instances | `list(string)` | `[]` | no |
| concourse_tags | List of tags to add to the worker to use for assigning jobs and tasks | `list(string)` | `[]` | no |
| concourse_version | Concourse CI version to use. Defaults to the latest tested version | `string` | `"7.7.0"` | no |
| concourse_version | Concourse CI version to use. Defaults to the latest tested version | `string` | `"7.7.1"` | no |
| concourse_version_override | Variable to override the default Concourse version. Leave it empty to fallback to `concourse_version`. Useful if you want to default to the module's default but also give the users the option to override it | `string` | `null` | no |
| concourse_worker_instance_count | Number of Concourse worker instances | `number` | `1` | no |
| cpu_credits | The credit option for CPU usage. Can be `standard` or `unlimited` | `string` | `"standard"` | no |
Expand Down
2 changes: 1 addition & 1 deletion ec2-worker/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ variable "concourse_worker_instance_count" {

variable "concourse_version" {
description = "Concourse CI version to use. Defaults to the latest tested version"
default = "7.7.0"
default = "7.7.1"
type = string
}

Expand Down
2 changes: 1 addition & 1 deletion ecs-web/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ variable "concourse_docker_image" {

variable "concourse_version" {
description = "Concourse CI version to use. Defaults to the latest tested version"
default = "7.7.0"
default = "7.7.1"
type = string
}

Expand Down

0 comments on commit 4ace9bf

Please sign in to comment.