Skip to content

Commit

Permalink
feat(doc): fluidattacks#973.4 propagate tags
Browse files Browse the repository at this point in the history
- include propagateTags option
- add tags into computeOnAwsBatch example

Signed-off-by: Daniel F. Murcia Rivera <danmur97@outlook.com>
  • Loading branch information
danmur97 committed Oct 26, 2022
1 parent 82b02a7 commit 5149361
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1724,9 +1724,6 @@ Types:
If the value of attempts is greater than one,
the job is retried on failure the same number of attempts as the value.
Defaults to `1`.
- tags (`attrsOf str`): Optional.
Tags to apply to the batch job.
Defaults to `{ }`.
- attemptDurationSeconds (`ints.positive`): Optional.
The time duration in seconds
(measured from the job attempt's startedAt timestamp)
Expand Down Expand Up @@ -1783,6 +1780,9 @@ Types:
- parallel (`ints.positive`): Optional.
Number of parallel jobs to trigger using
[Batch Array Jobs](https://docs.aws.amazon.com/batch/latest/userguide/array_jobs.html).
- propagateTags (`bool`): Optional.
Enable tags to be propagated into the ECS tasks.
Defaults to `true`.
- queue (`nullOr str`):
Name of the [AWS Batch][aws_batch] queue we should submit the job to.
It can be set to `null`,
Expand All @@ -1794,6 +1794,9 @@ Types:
to `source` (as in Bash's `source`)
before anything else.
Defaults to `[ ]`.
- tags (`attrsOf str`): Optional.
Tags to apply to the batch job.
Defaults to `{ }`.
- vcpus (`ints.positive`):
Amount of virtual CPUs that is reserved for the job.
Expand All @@ -1817,6 +1820,9 @@ Example `makes.nix`:
# Use default authentication for AWS
outputs."/secretsForAwsFromEnv/__default__"
];
tags = {
"Management:Product" = "awesome_app";
}
vcpus = 1;
};
};
Expand Down

0 comments on commit 5149361

Please sign in to comment.