diff options
| author | Ahmed Abdelhalim <[email protected]> | 2026-07-21 23:39:38 +0200 |
|---|---|---|
| committer | Ahmed Abdelhalim <[email protected]> | 2026-07-22 01:12:20 +0200 |
| commit | 026cbcda584d2fb7883cfe869ac7b75b4cf0ff75 (patch) | |
| tree | 29381ed9e74eaf6a26accecba87b50c86115aac7 /roles/awscli/meta/argument_specs.yml | |
| parent | 02d1b8dd81523cd4cba769e39b920d68bae0c728 (diff) | |
Add awscli role with configuration on pi for garage backend w/testing
Diffstat (limited to 'roles/awscli/meta/argument_specs.yml')
| -rw-r--r-- | roles/awscli/meta/argument_specs.yml | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/roles/awscli/meta/argument_specs.yml b/roles/awscli/meta/argument_specs.yml new file mode 100644 index 00000000..3fe2358c --- /dev/null +++ b/roles/awscli/meta/argument_specs.yml @@ -0,0 +1,32 @@ +--- +argument_specs: + main: + options: + awscli_version: + type: "str" + description: "aws-cli version to install via mise (e.g. 'latest', '2.19.0')" + default: "latest" + awscli_profile_name: + type: "str" + description: >- + AWS CLI profile name to configure. Use "default" to make it the + profile used when --profile is omitted + required: true + awscli_access_key_id: + type: "str" + description: "Access key ID for this profile" + required: true + awscli_secret_access_key: + type: "str" + description: "Secret access key for this profile" + required: true + awscli_region: + type: "str" + description: "Region for this profile (e.g. garage's configured s3_region for a garage profile)" + required: true + awscli_endpoint_url: + type: "str" + description: >- + Custom S3 endpoint URL for this profile, Omit for real AWS + (e.g. http://127.0.0.1:3900 for garage). + required: false |
