From 894d6fe330e60691eb6df81c90e2773df91876f2 Mon Sep 17 00:00:00 2001 From: The Magician Date: Wed, 22 Apr 2020 08:59:20 -0700 Subject: [PATCH] change affected AtLeastOneOfs back to ExactlyOneOf (#3394) (#199) Signed-off-by: Modular Magician --- plugins/modules/gcp_compute_firewall.py | 1 - plugins/modules/gcp_compute_health_check.py | 3 +-- plugins/modules/gcp_compute_region_health_check.py | 3 +-- 3 files changed, 2 insertions(+), 5 deletions(-) diff --git a/plugins/modules/gcp_compute_firewall.py b/plugins/modules/gcp_compute_firewall.py index b0e5e5b..b5fac47 100644 --- a/plugins/modules/gcp_compute_firewall.py +++ b/plugins/modules/gcp_compute_firewall.py @@ -550,7 +550,6 @@ def main(): target_tags=dict(type='list', elements='str'), ), mutually_exclusive=[ - ['allowed', 'denied'], ['destination_ranges', 'source_ranges', 'source_tags'], ['destination_ranges', 'source_ranges'], ['source_service_accounts', 'source_tags', 'target_tags'], diff --git a/plugins/modules/gcp_compute_health_check.py b/plugins/modules/gcp_compute_health_check.py index 2c04233..b710295 100644 --- a/plugins/modules/gcp_compute_health_check.py +++ b/plugins/modules/gcp_compute_health_check.py @@ -895,8 +895,7 @@ def main(): port_specification=dict(type='str'), ), ), - ), - mutually_exclusive=[['http2_health_check', 'http_health_check', 'https_health_check', 'ssl_health_check', 'tcp_health_check']], + ) ) if not module.params['scopes']: diff --git a/plugins/modules/gcp_compute_region_health_check.py b/plugins/modules/gcp_compute_region_health_check.py index 39777ef..70b958d 100644 --- a/plugins/modules/gcp_compute_region_health_check.py +++ b/plugins/modules/gcp_compute_region_health_check.py @@ -901,8 +901,7 @@ def main(): ), ), region=dict(type='str'), - ), - mutually_exclusive=[['http2_health_check', 'http_health_check', 'https_health_check', 'ssl_health_check', 'tcp_health_check']], + ) ) if not module.params['scopes']: