Backport/2.8/azure tags (#55672)
* azure_rm_subnet: remove documentation that says it supports tags (#55233) (cherry picked from commit32345641e7
) * azure_rm_subnet: fix CI error for deleting the azure_tags (#55276) (cherry picked from commit91e808eed2
)
This commit is contained in:
parent
4dee11336c
commit
cec67624ba
2 changed files with 2 additions and 14 deletions
|
@ -84,7 +84,6 @@ options:
|
|||
|
||||
extends_documentation_fragment:
|
||||
- azure
|
||||
- azure_tags
|
||||
|
||||
author:
|
||||
- "Chris Houseknecht (@chouseknecht)"
|
||||
|
@ -219,7 +218,8 @@ class AzureRMSubnet(AzureRMModuleBase):
|
|||
self.service_endpoints = None
|
||||
|
||||
super(AzureRMSubnet, self).__init__(self.module_arg_spec,
|
||||
supports_check_mode=True)
|
||||
supports_check_mode=True,
|
||||
supports_tags=False)
|
||||
|
||||
def exec_module(self, **kwargs):
|
||||
|
||||
|
|
|
@ -77,9 +77,6 @@
|
|||
locations:
|
||||
- eastus
|
||||
- westus
|
||||
tags:
|
||||
testing: testing
|
||||
delete: on-fini
|
||||
|
||||
- name: Should be idempotent
|
||||
azure_rm_subnet:
|
||||
|
@ -92,9 +89,6 @@
|
|||
locations:
|
||||
- eastus
|
||||
- westus
|
||||
tags:
|
||||
testing: testing
|
||||
delete: on-fini
|
||||
register: output
|
||||
|
||||
- assert:
|
||||
|
@ -116,9 +110,6 @@
|
|||
security_group:
|
||||
name: secgroupfoo
|
||||
resource_group: "{{ resource_group_secondary }}"
|
||||
tags:
|
||||
testing: testing
|
||||
delete: on-fini
|
||||
register: output
|
||||
|
||||
- assert:
|
||||
|
@ -133,9 +124,6 @@
|
|||
resource_group: "{{ resource_group }}"
|
||||
address_prefix_cidr: "10.1.0.0/16"
|
||||
security_group: "{{ nsg.state.id }}"
|
||||
tags:
|
||||
testing: testing
|
||||
delete: on-fini
|
||||
register: output
|
||||
|
||||
- assert:
|
||||
|
|
Loading…
Reference in a new issue