mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-06-18 22:31:06 -07:00
Enable path expansion in GCE modules
This is basically a replay of #16064 from `gce.py` to other pertinent `gce_*.py` files. It enables expansions of paths in `gce.ini` like `~/.project.json`
This commit is contained in:
parent
0d0c38400f
commit
cc2eecc247
5 changed files with 10 additions and 10 deletions
|
@ -329,8 +329,8 @@ def main():
|
|||
target_tags = dict(type='list'),
|
||||
state = dict(default='present'),
|
||||
service_account_email = dict(),
|
||||
pem_file = dict(),
|
||||
credentials_file = dict(),
|
||||
pem_file = dict(type='path'),
|
||||
credentials_file = dict(type='path'),
|
||||
project_id = dict(),
|
||||
mode = dict(default='legacy', choices=['legacy', 'auto', 'custom']),
|
||||
subnet_name = dict(),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue