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

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
duboisph committed Aug 25, 2022
1 parent e98a2aa commit fd13fac
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ The following resources will be created:
| <a name="input_subnet_ids"></a> [subnet_ids](#input_subnet_ids) | List of subnet ids where to deploy the worker instances | `list(string)` | n/a | yes |
| <a name="input_vpc_id"></a> [vpc_id](#input_vpc_id) | The VPC id where to deploy the worker instances | `string` | n/a | yes |
| <a name="input_additional_security_group_ids"></a> [additional_security_group_ids](#input_additional_security_group_ids) | Additional security group ids to attach to the worker instances | `list(string)` | `[]` | no |
| <a name="input_bagageclaim_driver"></a> [bagageclaim_driver](#input_bagageclaim_driver) | Which Concourse Worker bagageclaim driver to use. Supported choices: `btrfs` and `overlay` | `string` | `"overlay"` | no |
| <a name="input_baggageclaim_driver"></a> [baggageclaim_driver](#input_baggageclaim_driver) | Which Concourse Worker baggageclaim driver to use. Supported choices: `btrfs` and `overlay` | `string` | `"overlay"` | no |
| <a name="input_concourse_tags"></a> [concourse_tags](#input_concourse_tags) | List of tags to add to the worker to use for assigning jobs and tasks | `list(string)` | `[]` | no |
| <a name="input_concourse_version"></a> [concourse_version](#input_concourse_version) | Concourse CI version to use. Defaults to the latest tested version | `string` | `"7.7.1"` | no |
| <a name="input_concourse_version_override"></a> [concourse_version_override](#input_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 |
Expand Down
4 changes: 2 additions & 2 deletions ec2-worker/asg.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
locals {
filesystem = var.bagageclaim_driver == "btrfs" ? "btrfs" : "ext4"
filesystem = var.baggageclaim_driver == "btrfs" ? "btrfs" : "ext4"
}

# Get the latest Amazon Linux 2 ami
Expand Down Expand Up @@ -159,7 +159,7 @@ data "template_file" "concourse_systemd" {

vars = {
concourse_hostname = "${var.concourse_hostname}:${var.worker_tsa_port}"
baggageclaim_driver = var.bagageclaim_driver
baggageclaim_driver = var.baggageclaim_driver
tags = join(" ", formatlist("--tag=%s", var.concourse_tags))
}
}
Expand Down
4 changes: 2 additions & 2 deletions ec2-worker/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -169,8 +169,8 @@ variable "public" {
default = false
}

variable "bagageclaim_driver" {
variable "baggageclaim_driver" {
type = string
description = "Which Concourse Worker bagageclaim driver to use. Supported choices: `btrfs` and `overlay`"
description = "Which Concourse Worker baggageclaim driver to use. Supported choices: `btrfs` and `overlay`"
default = "overlay"
}

0 comments on commit fd13fac

Please sign in to comment.