-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathparam_tool.rb
231 lines (195 loc) · 5.83 KB
/
param_tool.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
#!/bin/env ruby
require 'yaml'
require 'aws-sdk-ssm'
require 'optparse'
SECURE_MARKER = 'SECURE'
DELETE_MARKER = 'DELETE'
config = {
yes: false,
decrypt: false,
file: nil
}
OptionParser.new do |opts|
opts.banner = "Usage: param_tool.rb [options] (down|up)"
opts.on("-f", "--file=FILE", "File with params") do |f|
config[:file] = f
end
opts.on("-p", "--prefix=PREFIX", "Param prefix") do |p|
config[:prefix] = p
end
opts.on("-k", "--key=KEY", "Encryption key for writing secure params (no effect on reading)") do |k|
config[:key] = k
end
opts.on("-d", "--decrypt", "Output decrypted params") do
config[:decrypt] = true
end
opts.on("-y", "--yes", "Apply changes without asking for confirmation (DANGER)") do
config[:yes] = true
end
opts.on("-D", "--description=STRING", "Add description to params") do |k|
config[:description] = k
end
end.parse!
raise OptionParser::MissingArgument, 'prefix' if config[:prefix].nil?
config[:prefix] += '/' if config[:prefix][-1] != '/'
config[:prefix] = "/#{config[:prefix]}" if config[:prefix][0] != '/'
client = Aws::SSM::Client.new
def get_all_params(client, prefix, with_decryption, next_token = nil)
resp = client.get_parameters_by_path(
path: prefix,
recursive: true,
with_decryption: with_decryption,
next_token: next_token
)
params = resp.parameters
if resp.next_token
params + get_all_params(client, prefix, with_decryption, resp.next_token)
else
params
end
end
def build_write_params_plan(client, config, old_param_tree, keypath, value)
if value.is_a?(Hash)
value.flat_map do |key, child|
build_write_params_plan(client, config, old_param_tree, keypath + [key], child)
end
elsif value.is_a?(Array)
value.each.with_index.flat_map do |child, index|
build_write_params_plan(client, config, old_param_tree, keypath + [index], child)
end
elsif value.nil? || value == ''
# skip params without value set
[]
else
secure = false
if keypath[-1][-1] == '!'
if value == SECURE_MARKER
# skip secure parameter that is not being written
return []
end
keypath = keypath.clone.tap { |kp| kp[-1] = kp[-1][0..-2] }
secure = true
end
key_name = config[:prefix] + keypath.join('/')
old_value = old_param_tree.dig(*keypath)
if value == DELETE_MARKER
return [] if old_value.nil?
return [{ name: key_name, operation: :delete }]
end
string_value = value.to_s
# skip params with no change
return [] if old_value == string_value
[{
name: key_name,
operation: old_value ? :update : :create,
value: string_value,
secure: secure
}]
end
end
def print_write_plan(plan)
plan.each do |item|
print "#{item[:operation]} #{item[:name]}"
if item[:value]
print ' = '
if item[:secure]
print '<sensitive value redacted>'
else
print item[:value].inspect
end
end
puts
end
end
def apply_write_plan(config, client, plan)
plan.each do |item|
begin
if item[:operation] == :delete
print "deleting parameter #{item[:name]}..."
begin
client.delete_parameter(name: item[:name])
puts 'done'
rescue Aws::SSM::Errors::ParameterNotFound
puts 'already missing'
end
elsif %i[create update].include? item[:operation]
print "writing parameter #{item[:name]}..."
client.put_parameter(
name: item[:name],
value: item[:value],
type: item[:secure] ? 'SecureString' : 'String',
key_id: item[:secure] ? config[:key] : nil,
overwrite: item[:operation] == :update,
tier: 'Intelligent-Tiering',
description: config[:description]
)
puts 'done'
end
rescue Aws::SSM::Errors::ThrottlingException
puts
puts 'AWS SSM request limit exceeded - waiting for 1 second before retrying'
sleep 1
retry
end
end
end
def read_param_tree(client, config, add_secure_suffix = true)
param_tree = {}
get_all_params(client, config[:prefix], config[:decrypt]).each do |param|
name_parts = param.name[config[:prefix].length..-1].split('/')
key_name = name_parts.pop
value = param.value
if param.type == 'SecureString'
key_name += '!' if add_secure_suffix
value = SECURE_MARKER unless config[:decrypt]
end
key_container = name_parts.reduce(param_tree) { |h, k| h[k] ||= {}; h[k] }
key_container[key_name] = value
end
param_tree
end
if ARGV[0] == 'down'
yaml_config = YAML.dump(read_param_tree(client, config))
if config[:file]
File.open(config[:file], 'w') { |f| f.puts yaml_config }
else
$stdout.puts yaml_config
end
elsif ARGV[0] == 'up'
config[:decrypt] = true # so we can compare old values to new
old_param_tree = read_param_tree(client, config, false)
new_param_tree =
begin
if config[:file]
File.open(config[:file]) { |f| YAML.safe_load(f.read, aliases: true) }
else
YAML.safe_load(STDIN.read, aliases: true)
end
rescue StandardError => e
raise "Failed to read params YAML: #{e}"
end
plan = build_write_params_plan(client, config, old_param_tree, [], new_param_tree)
if plan.empty?
puts 'All parameters are up to date. Nothing to do.'
exit(0)
end
puts 'Planned changes:'
print_write_plan(plan)
if !config[:file] && !config[:yes]
puts 'To automatically apply params from STDIN, run with --yes flag'
puts 'Operation aborted. No changes were made.'
exit(1)
end
unless config[:yes]
print 'Apply? (anything but "yes" will abort): '
answer = $stdin.gets.chomp
if answer != 'yes'
puts 'Operation aborted. No changes were made.'
exit(1)
end
end
apply_write_plan(config, client, plan)
puts 'All done!'
else
puts "USAGE param_tool.rb (up|down)"
end