Removed us/lasdev datacenter which the cloud provider no longer maintains.
This commit is contained in:
parent
fa41ccd59b
commit
727eaa219d
2 changed files with 6 additions and 8 deletions
|
@ -89,7 +89,7 @@ options:
|
|||
- The datacenter location. Use only if you want to create the Datacenter or else this value is ignored.
|
||||
required: false
|
||||
default: us/las
|
||||
choices: [ "us/las", "us/lasdev", "de/fra", "de/fkb" ]
|
||||
choices: [ "us/las", "de/fra", "de/fkb" ]
|
||||
assign_public_ip:
|
||||
description:
|
||||
- This will assign the machine to the public LAN. If no LAN exists with public Internet access it is created.
|
||||
|
@ -205,8 +205,7 @@ except ImportError:
|
|||
|
||||
LOCATIONS = ['us/las',
|
||||
'de/fra',
|
||||
'de/fkb',
|
||||
'us/lasdev']
|
||||
'de/fkb']
|
||||
|
||||
uuid_match = re.compile(
|
||||
'[\w]{8}-[\w]{4}-[\w]{4}-[\w]{4}-[\w]{12}', re.I)
|
||||
|
|
|
@ -35,7 +35,7 @@ options:
|
|||
- The datacenter location.
|
||||
required: false
|
||||
default: us/las
|
||||
choices: [ "us/las", "us/lasdev", "de/fra", "de/fkb" ]
|
||||
choices: [ "us/las", "de/fra", "de/fkb" ]
|
||||
subscription_user:
|
||||
description:
|
||||
- The ProfitBricks username. Overrides the PB_SUBSCRIPTION_ID environement variable.
|
||||
|
@ -94,8 +94,7 @@ except ImportError:
|
|||
|
||||
LOCATIONS = ['us/las',
|
||||
'de/fra',
|
||||
'de/fkb',
|
||||
'us/lasdev']
|
||||
'de/fkb']
|
||||
|
||||
uuid_match = re.compile(
|
||||
'[\w]{8}-[\w]{4}-[\w]{4}-[\w]{4}-[\w]{12}', re.I)
|
||||
|
@ -206,7 +205,7 @@ def main():
|
|||
argument_spec=dict(
|
||||
name=dict(),
|
||||
description=dict(),
|
||||
location=dict(choices=LOCATIONS, default='us/lasdev'),
|
||||
location=dict(choices=LOCATIONS, default='us/las'),
|
||||
subscription_user=dict(),
|
||||
subscription_password=dict(),
|
||||
wait=dict(type='bool', default=True),
|
||||
|
@ -256,4 +255,4 @@ def main():
|
|||
|
||||
from ansible.module_utils.basic import *
|
||||
|
||||
main()
|
||||
main()
|
||||
|
|
Loading…
Reference in a new issue