Merge pull request #1186 from RonRothman/fix-ssm-get-parameter
ssm get_parameter to honot WithDecryption
This commit is contained in:
commit
1bcd61dc36
@ -56,13 +56,8 @@ class SimpleSystemManagerResponse(BaseResponse):
|
|||||||
return json.dumps(error), dict(status=400)
|
return json.dumps(error), dict(status=400)
|
||||||
|
|
||||||
response = {
|
response = {
|
||||||
'Parameter': {
|
'Parameter': result.response_object(with_decryption)
|
||||||
'Name': name,
|
|
||||||
'Type': result.type,
|
|
||||||
'Value': result.value
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return json.dumps(response)
|
return json.dumps(response)
|
||||||
|
|
||||||
def get_parameters(self):
|
def get_parameters(self):
|
||||||
|
Loading…
Reference in New Issue
Block a user