Implement support for SSM parameter store
This commit adds initial support for the Simple System Manager client. It currently only mocks the following api endpoints: - delete_parameter() - put_parameter() - get_parameters()
This commit is contained in:
parent
df84675ae6
commit
783a1d73b4
8 changed files with 255 additions and 0 deletions
10
moto/ssm/urls.py
Normal file
10
moto/ssm/urls.py
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
from __future__ import unicode_literals
|
||||
from .responses import SimpleSystemManagerResponse
|
||||
|
||||
url_bases = [
|
||||
"https?://ssm.(.+).amazonaws.com",
|
||||
]
|
||||
|
||||
url_paths = {
|
||||
'{0}/$': SimpleSystemManagerResponse.dispatch,
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue