From c291d04bd5c8277a95737ce65aea9563a436e417 Mon Sep 17 00:00:00 2001 From: Jordan Borean Date: Tue, 26 Mar 2019 09:52:03 +1000 Subject: [PATCH] win_environment: remove uneeded required_by entry in spec (#54369) --- lib/ansible/modules/windows/win_environment.ps1 | 3 --- 1 file changed, 3 deletions(-) diff --git a/lib/ansible/modules/windows/win_environment.ps1 b/lib/ansible/modules/windows/win_environment.ps1 index f8452be6954..53e28e68aa4 100644 --- a/lib/ansible/modules/windows/win_environment.ps1 +++ b/lib/ansible/modules/windows/win_environment.ps1 @@ -12,9 +12,6 @@ $spec = @{ state = @{ type = "str"; choices = "absent", "present"; default = "present" } value = @{ type = "str" } } - required_by = @{ - present = @("value") - } required_if = @(,@("state", "present", @("value"))) supports_check_mode = $true }