mirror of
https://github.com/certbot/certbot.git
synced 2026-06-06 15:22:38 -04:00
fix param order
This commit is contained in:
parent
e4b0fa67de
commit
df309e43ad
1 changed files with 4 additions and 4 deletions
|
|
@ -147,8 +147,8 @@ def make_instance(ec2_client,
|
|||
keyname,
|
||||
security_group_id,
|
||||
subnet_id,
|
||||
machine_type='t2.micro',
|
||||
self_destruct):
|
||||
self_destruct,
|
||||
machine_type='t2.micro'):
|
||||
"""Creates an instance using the given parameters.
|
||||
|
||||
If self_destruct is True, the instance will be configured to shutdown after
|
||||
|
|
@ -341,7 +341,7 @@ def create_client_instance(ec2_client, target, security_group_id, subnet_id, sel
|
|||
machine_type=machine_type,
|
||||
security_group_id=security_group_id,
|
||||
subnet_id=subnet_id,
|
||||
self_destruct)
|
||||
self_destruct=self_destruct)
|
||||
|
||||
|
||||
def test_client_process(fab_config, inqueue, outqueue, boulder_url, log_dir):
|
||||
|
|
@ -507,7 +507,7 @@ def main():
|
|||
#machine_type='t2.medium',
|
||||
security_group_id=security_group_id,
|
||||
subnet_id=subnet_id,
|
||||
self_destruct)
|
||||
self_destruct=self_destruct)
|
||||
|
||||
instances = []
|
||||
try:
|
||||
|
|
|
|||
Loading…
Reference in a new issue