mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-23 13:20:23 -07:00
Perform region validation early to be more explicit about invalid region failures
This commit is contained in:
parent
69e7999586
commit
55ed4489e3
3 changed files with 6 additions and 5 deletions
|
@ -160,7 +160,7 @@ def main():
|
|||
state = module.params.get('state')
|
||||
ttl = module.params.get('ttl')
|
||||
|
||||
setup_rax_module(module, pyrax)
|
||||
setup_rax_module(module, pyrax, False)
|
||||
|
||||
rax_dns(module, comment, email, name, state, ttl)
|
||||
|
||||
|
|
|
@ -312,7 +312,7 @@ def main():
|
|||
ttl = module.params.get('ttl')
|
||||
record_type = module.params.get('type')
|
||||
|
||||
setup_rax_module(module, pyrax)
|
||||
setup_rax_module(module, pyrax, False)
|
||||
|
||||
if record_type.upper() == 'PTR':
|
||||
if not server and not loadbalancer:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue