Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lanesawyer/aws_parameter_update
A Rust library for updating AWS Parameters
https://github.com/lanesawyer/aws_parameter_update
aws aws-parameter-store cli rust
Last synced: 14 days ago
JSON representation
A Rust library for updating AWS Parameters
- Host: GitHub
- URL: https://github.com/lanesawyer/aws_parameter_update
- Owner: lanesawyer
- License: gpl-3.0
- Created: 2020-02-14T06:12:18.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2023-02-06T13:05:35.000Z (almost 2 years ago)
- Last Synced: 2024-11-20T15:08:15.780Z (about 1 month ago)
- Topics: aws, aws-parameter-store, cli, rust
- Language: Rust
- Homepage:
- Size: 112 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# AWS Parameter Update Tool
This is a small tool used to quickly update simple AWS Parameters.
## CLI Tool
Run `apu -h` to see a list of commands and their usage.
# Updating From a File
The file structure for updating paramters is as follows:
```yaml
- name: "new_parameter"
value: "Example parameter"
description: "An example of an unsecure parameter"
is_secure: false
- name: "new_secure_parameter"
value: "$uper$ecretP@$$W0rd"
description: "An example of a secure parameter"
is_secure: true
```