Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix path_matcher in region url maps #353

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions plugins/modules/gcp_compute_region_url_map.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@
key ''selfLink'' and value of your resource''s selfLink Alternatively, you
can add `register: name-of-resource` to a gcp_compute_region_backend_service
task and then set this default_service field to "{{ name-of-resource }}"'
required: true
required: false
type: dict
description:
description:
Expand Down Expand Up @@ -3143,7 +3143,7 @@ def main():
type='list',
elements='dict',
options=dict(
default_service=dict(required=True, type='dict'),
default_service=dict(type='dict'),
description=dict(type='str'),
name=dict(required=True, type='str'),
route_rules=dict(
Expand Down