Skip to content

CAT-25581 jdx/mise-action@v2 fix installing tools #63

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jul 8, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ terraform 1.4.5
golang 1.20.3
ripgrep 13.0.0
tflint 0.46.0
github-cli 2.27.0
github-cli 2.74.2
fd 8.7.0
terraform-docs 0.16.0
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
### Using the Repo Source

```hcl
github.com/pbs/terraform-aws-ecs-task-definition-module?ref=2.1.3
github.com/pbs/terraform-aws-ecs-task-definition-module?ref=x.y.z
```

### Alternative Installation Methods
Expand All @@ -22,7 +22,7 @@ Integrate this module like so:

```hcl
module "task" {
source = "github.com/pbs/terraform-aws-ecs-task-definition-module?ref=2.1.3"
source = "github.com/pbs/terraform-aws-ecs-task-definition-module?ref=x.y.z"

# Tagging Parameters
organization = var.organization
Expand All @@ -40,7 +40,7 @@ module "task" {

If this repo is added as a subtree, then the version of the module should be close to the version shown here:

`2.1.3`
`x.y.z`

Note, however that subtrees can be altered as desired within repositories.

Expand Down Expand Up @@ -135,6 +135,7 @@ No modules.
| <a name="input_tags"></a> [tags](#input\_tags) | Extra tags | `map(string)` | `{}` | no |
| <a name="input_task_execution_role_policy_json"></a> [task\_execution\_role\_policy\_json](#input\_task\_execution\_role\_policy\_json) | (optional) IAM policy to attach to task execution role used for this task and replace defaults | `string` | `null` | no |
| <a name="input_task_family"></a> [task\_family](#input\_task\_family) | (optional) task family for task. This is effectively the name of the task, without qualification of revision | `string` | `null` | no |
| <a name="input_track_latest"></a> [track\_latest](#input\_track\_latest) | (optional) Whether should track latest ACTIVE task definition on AWS or the one created with the resource stored in state. | `bool` | `false` | no |
| <a name="input_use_cwagent_sidecar"></a> [use\_cwagent\_sidecar](#input\_use\_cwagent\_sidecar) | (optional) if set to true, will add a cwagent sidecar container | `bool` | `false` | no |
| <a name="input_use_xray_sidecar"></a> [use\_xray\_sidecar](#input\_use\_xray\_sidecar) | (optional) if set to null, will use the sidecar to trace the task if envoy is used, as that automatically implements tracing configs. | `bool` | `null` | no |
| <a name="input_virtual_gateway"></a> [virtual\_gateway](#input\_virtual\_gateway) | (optional) the name of the virtual gateway associated with this task definition. If null, ignored | `string` | `null` | no |
Expand Down