@@ -28,12 +28,12 @@ $ brew install easy-params
2828## CLI
2929
3030``` console
31- $ ezparams
31+ $ easy-params
3232An easy AWS Parameter Store CLI
3333
3434Usage:
35- ezparams [flags]
36- ezparams [command]
35+ easy-params [flags]
36+ easy-params [command]
3737
3838Available Commands:
3939 diff Shows the difference recursively between 2 paths.
@@ -46,14 +46,14 @@ Available Commands:
4646 rm Remove parameter(s) by path
4747
4848Flags:
49- --config string config file (default is $HOME/.ezparams .yaml)
50- -h, --help help for ezparams
49+ --config string config file (default is $HOME/.easy-params .yaml)
50+ -h, --help help for easy-params
5151 --load-config load aws config from ~/.aws/config (default true)
5252 -l, --local-time convert UTC to local time (default true)
5353 --region string AWS region to use
5454 --version show version
5555
56- Use "ezparams [command] --help" for more information about a command.
56+ Use "easy-params [command] --help" for more information about a command.
5757```
5858
5959## Basic Usage
@@ -69,11 +69,11 @@ by default.
6969Lists parameters in specified path.
7070
7171``` console
72- $ ezparams ls --help
72+ $ easy-params ls --help
7373List parameters by path
7474
7575Usage:
76- ezparams ls <path> [flags]
76+ easy-params ls <path> [flags]
7777
7878Flags:
7979 -d, --decrypt decrypt "SecureString" values (default true)
8484 -v, --values display values
8585
8686Global Flags:
87- --config string config file (default is $HOME/.ezparams .yaml)
87+ --config string config file (default is $HOME/.easy-params .yaml)
8888 --load-config load aws config from ~/.aws/config (default true)
8989 -l, --local-time convert UTC to local time (default true)
9090 --region string AWS region to use
@@ -96,11 +96,11 @@ Global Flags:
9696Put a parameter to the specified path.
9797
9898``` console
99- $ ezparams put --help
99+ $ easy-params put --help
100100Put parameter by path
101101
102102Usage:
103- ezparams put <path> <value> [flags]
103+ easy-params put <path> <value> [flags]
104104
105105Flags:
106106 -c, --context string context mode for setting many values.
@@ -109,7 +109,7 @@ Flags:
109109 -t, --type string type of parameter. (default "SecureString")
110110
111111Global Flags:
112- --config string config file (default is $HOME/.ezparams .yaml)
112+ --config string config file (default is $HOME/.easy-params .yaml)
113113 --load-config load aws config from ~/.aws/config (default true)
114114 -l, --local-time convert UTC to local time (default true)
115115 --region string AWS region to use
@@ -121,18 +121,18 @@ Global Flags:
121121Remove a parameter by path. You can also remove recursively by path with the --recursive flag.
122122
123123``` console
124- $ ezparams rm --help
124+ $ easy-params rm --help
125125Remove parameter(s) by path
126126
127127Usage:
128- ezparams rm <path(s)> [flags]
128+ easy-params rm <path(s)> [flags]
129129
130130Flags:
131131 -h, --help help for rm
132132 --recursive remove all children on path recursively
133133
134134Global Flags:
135- --config string config file (default is $HOME/.ezparams .yaml)
135+ --config string config file (default is $HOME/.easy-params .yaml)
136136 --load-config load aws config from ~/.aws/config (default true)
137137 -l, --local-time convert UTC to local time (default true)
138138 --region string AWS region to use
@@ -145,11 +145,11 @@ Migrate parameters from one path to another. Supports region to region. _This co
145145same region if ` region-to ` is not specified._
146146
147147``` console
148- $ ezparams migrate --help
148+ $ easy-params migrate --help
149149Migrate parameters by path
150150
151151Usage:
152- ezparams migrate <source path> [destination path] [flags]
152+ easy-params migrate <source path> [destination path] [flags]
153153
154154Flags:
155155 -h, --help help for migrate
@@ -158,7 +158,7 @@ Flags:
158158 -t, --region-to string the region to migrate to
159159
160160Global Flags:
161- --config string config file (default is $HOME/.ezparams .yaml)
161+ --config string config file (default is $HOME/.easy-params .yaml)
162162 --load-config load aws config from ~/.aws/config (default true)
163163 -l, --local-time convert UTC to local time (default true)
164164 --region string AWS region to use
@@ -170,11 +170,11 @@ Global Flags:
170170Simple diff between 2 paths. Can also diff values.
171171
172172``` console
173- $ ezparams diff --help
173+ $ easy-params diff --help
174174Shows the difference recursively between 2 paths.
175175
176176Usage:
177- ezparams diff <path 1> <path 2> [flags]
177+ easy-params diff <path 1> <path 2> [flags]
178178
179179Flags:
180180 -d, --decrypt decrypt "SecureString" values (default true)
@@ -183,7 +183,7 @@ Flags:
183183 -w, --width-limit int width limit of value output
184184
185185Global Flags:
186- --config string config file (default is $HOME/.ezparams .yaml)
186+ --config string config file (default is $HOME/.easy-params .yaml)
187187 --load-config load aws config from ~/.aws/config (default true)
188188 -l, --local-time convert UTC to local time (default true)
189189 --region string AWS region to use
0 commit comments