|
|
|
@ -51,20 +51,14 @@
|
|
|
|
|
probe: prob0
|
|
|
|
|
register: lb
|
|
|
|
|
|
|
|
|
|
- name: create public ip
|
|
|
|
|
azure_rm_publicipaddress:
|
|
|
|
|
name: "pip{{ rpfx }}"
|
|
|
|
|
resource_group: '{{ resource_group }}'
|
|
|
|
|
|
|
|
|
|
- name: Create NIC (check mode)
|
|
|
|
|
- name: Create most simple NIC with virtual_network id (check mode)
|
|
|
|
|
azure_rm_networkinterface:
|
|
|
|
|
resource_group: "{{ resource_group }}"
|
|
|
|
|
name: "tn{{ rpfx }}"
|
|
|
|
|
virtual_network: "{{ vn.state.id }}"
|
|
|
|
|
subnet: "tn{{ rpfx }}"
|
|
|
|
|
public_ip_name: "tn{{ rpfx }}"
|
|
|
|
|
public_ip_allocation_method: Static
|
|
|
|
|
security_group: "tn{{ rpfx }}"
|
|
|
|
|
public_ip: False
|
|
|
|
|
create_with_security_group: False
|
|
|
|
|
register: output
|
|
|
|
|
check_mode: yes
|
|
|
|
|
|
|
|
|
@ -72,357 +66,258 @@
|
|
|
|
|
that:
|
|
|
|
|
- output.changed
|
|
|
|
|
|
|
|
|
|
- name: Create NIC using virtual_network resource_group parameter
|
|
|
|
|
- name: Create most simple NIC with virtual_network resource_group
|
|
|
|
|
azure_rm_networkinterface:
|
|
|
|
|
resource_group: "{{ resource_group }}"
|
|
|
|
|
name: "tn{{ rpfx }}rg"
|
|
|
|
|
virtual_network:
|
|
|
|
|
name: "tn{{ rpfx }}"
|
|
|
|
|
resource_group: "{{ resource_group_secondary }}"
|
|
|
|
|
subnet: "tn{{ rpfx }}"
|
|
|
|
|
public_ip_name: "tn{{ rpfx }}rg"
|
|
|
|
|
public_ip_allocation_method: Static
|
|
|
|
|
security_group: "tn{{ rpfx }}"
|
|
|
|
|
register: output
|
|
|
|
|
|
|
|
|
|
- name: Create NIC using virtual_network resource_group parameter (idempotent)
|
|
|
|
|
azure_rm_networkinterface:
|
|
|
|
|
resource_group: "{{ resource_group }}"
|
|
|
|
|
name: "tn{{ rpfx }}rg"
|
|
|
|
|
virtual_network:
|
|
|
|
|
name: "tn{{ rpfx }}"
|
|
|
|
|
resource_group: "{{ resource_group_secondary }}"
|
|
|
|
|
subnet: "tn{{ rpfx }}"
|
|
|
|
|
public_ip_name: "tn{{ rpfx }}rg"
|
|
|
|
|
public_ip_allocation_method: Static
|
|
|
|
|
security_group: "tn{{ rpfx }}"
|
|
|
|
|
register: output
|
|
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
|
that:
|
|
|
|
|
- not output.changed
|
|
|
|
|
|
|
|
|
|
- name: Delete NIC
|
|
|
|
|
azure_rm_networkinterface:
|
|
|
|
|
resource_group: "{{ resource_group }}"
|
|
|
|
|
name: "tn{{ rpfx }}rg"
|
|
|
|
|
state: absent
|
|
|
|
|
|
|
|
|
|
- name: Create NIC
|
|
|
|
|
azure_rm_networkinterface:
|
|
|
|
|
resource_group: "{{ resource_group }}"
|
|
|
|
|
name: "tn{{ rpfx }}"
|
|
|
|
|
virtual_network: "{{ vn.state.id }}"
|
|
|
|
|
subnet: "tn{{ rpfx }}"
|
|
|
|
|
public_ip_name: "tn{{ rpfx }}"
|
|
|
|
|
public_ip_allocation_method: Static
|
|
|
|
|
security_group:
|
|
|
|
|
name: "tn{{ rpfx }}2"
|
|
|
|
|
resource_group: "{{ resource_group_secondary }}"
|
|
|
|
|
public_ip: False
|
|
|
|
|
create_with_security_group: False
|
|
|
|
|
register: output
|
|
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
|
that:
|
|
|
|
|
- output.changed
|
|
|
|
|
- output.state.ip_configuration.subnet.name == 'tn{{ rpfx }}'
|
|
|
|
|
- output.state.id
|
|
|
|
|
|
|
|
|
|
- name: Update the NIC with mutilple ip configurations (check mode)
|
|
|
|
|
azure_rm_networkinterface:
|
|
|
|
|
- name: Get fact of the new created NIC
|
|
|
|
|
azure_rm_networkinterface_facts:
|
|
|
|
|
resource_group: "{{ resource_group }}"
|
|
|
|
|
name: "tn{{ rpfx }}"
|
|
|
|
|
security_group:
|
|
|
|
|
name: "tn{{ rpfx }}2"
|
|
|
|
|
resource_group: "{{ resource_group_secondary }}"
|
|
|
|
|
virtual_network: "{{ vn.state.id }}"
|
|
|
|
|
subnet: "tn{{ rpfx }}"
|
|
|
|
|
ip_configurations:
|
|
|
|
|
- name: ipconfig-add
|
|
|
|
|
public_ip_name: "tn{{ rpfx }}2"
|
|
|
|
|
- name: default
|
|
|
|
|
public_ip_name: "tn{{ rpfx }}"
|
|
|
|
|
primary: True
|
|
|
|
|
public_ip_allocation_method: Static
|
|
|
|
|
- name: ipconfig1
|
|
|
|
|
public_ip_name: "tn{{ rpfx }}3"
|
|
|
|
|
register: output
|
|
|
|
|
check_mode: yes
|
|
|
|
|
register: facts
|
|
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
|
that:
|
|
|
|
|
- output.changed
|
|
|
|
|
|
|
|
|
|
- name: Update the NIC with mutilple ip configurations
|
|
|
|
|
- "facts.networkinterfaces | length == 1"
|
|
|
|
|
- facts.networkinterfaces[0].id == output.state.id
|
|
|
|
|
- "facts.networkinterfaces[0].ip_configurations | length == 1"
|
|
|
|
|
- not facts.networkinterfaces[0].security_group
|
|
|
|
|
- not facts.networkinterfaces[0].ip_configurations[0].public_ip_address
|
|
|
|
|
- not facts.networkinterfaces[0].enable_ip_forwarding
|
|
|
|
|
- not facts.networkinterfaces[0].enable_accelerated_networking
|
|
|
|
|
|
|
|
|
|
- name: Create most simple NIC with ip configurations (idempotent)
|
|
|
|
|
azure_rm_networkinterface:
|
|
|
|
|
resource_group: "{{ resource_group }}"
|
|
|
|
|
name: "tn{{ rpfx }}"
|
|
|
|
|
security_group:
|
|
|
|
|
name: "tn{{ rpfx }}2"
|
|
|
|
|
resource_group: "{{ resource_group_secondary }}"
|
|
|
|
|
virtual_network: "{{ vn.state.id }}"
|
|
|
|
|
subnet: "tn{{ rpfx }}"
|
|
|
|
|
resource_group: "{{ facts.networkinterfaces[0].resource_group }}"
|
|
|
|
|
name: "{{ facts.networkinterfaces[0].name }}"
|
|
|
|
|
virtual_network: "{{ facts.networkinterfaces[0].virtual_network }}"
|
|
|
|
|
create_with_security_group: False
|
|
|
|
|
ip_configurations:
|
|
|
|
|
- name: ipconfig-add
|
|
|
|
|
public_ip_name: "tn{{ rpfx }}2"
|
|
|
|
|
- name: default
|
|
|
|
|
public_ip_name: "tn{{ rpfx }}"
|
|
|
|
|
primary: True
|
|
|
|
|
public_ip_allocation_method: Static
|
|
|
|
|
- name: ipconfig1
|
|
|
|
|
public_ip_name: "tn{{ rpfx }}3"
|
|
|
|
|
load_balancer_backend_address_pools:
|
|
|
|
|
- "{{ lb.state.backend_address_pools[0].id }}"
|
|
|
|
|
- name: backendaddrpool1
|
|
|
|
|
load_balancer: "lb{{ rpfx }}"
|
|
|
|
|
- name: "{{ facts.networkinterfaces[0].ip_configurations[0].name }}"
|
|
|
|
|
private_ip_address: "{{ facts.networkinterfaces[0].ip_configurations[0].private_ip_address }}"
|
|
|
|
|
private_ip_allocation_method: "{{ facts.networkinterfaces[0].ip_configurations[0].private_ip_allocation_method }}"
|
|
|
|
|
primary: "{{ facts.networkinterfaces[0].ip_configurations[0].primary }}"
|
|
|
|
|
subnet: "{{ facts.networkinterfaces[0].subnet }}"
|
|
|
|
|
register: output
|
|
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
|
that:
|
|
|
|
|
- output.changed
|
|
|
|
|
- not output.state.ip_configuration
|
|
|
|
|
- output.state.ip_configurations | length == 3
|
|
|
|
|
- output.state.network_security_group.name == 'tn{{ rpfx }}2'
|
|
|
|
|
- not output.changed
|
|
|
|
|
|
|
|
|
|
- name: Update the NIC with mutilple ip configurations (idempotent)
|
|
|
|
|
- name: Create most simple NIC (idempotent)
|
|
|
|
|
azure_rm_networkinterface:
|
|
|
|
|
resource_group: "{{ resource_group }}"
|
|
|
|
|
name: "tn{{ rpfx }}"
|
|
|
|
|
security_group: "{{ output.state.network_security_group.id }}"
|
|
|
|
|
virtual_network: "{{ vn.state.id }}"
|
|
|
|
|
subnet: "tn{{ rpfx }}"
|
|
|
|
|
ip_configurations:
|
|
|
|
|
- name: ipconfig-add
|
|
|
|
|
public_ip_name: "tn{{ rpfx }}2"
|
|
|
|
|
- name: default
|
|
|
|
|
public_ip_name: "tn{{ rpfx }}"
|
|
|
|
|
primary: True
|
|
|
|
|
public_ip_allocation_method: Static
|
|
|
|
|
- name: ipconfig1
|
|
|
|
|
public_ip_name: "tn{{ rpfx }}3"
|
|
|
|
|
load_balancer_backend_address_pools:
|
|
|
|
|
- "{{ lb.state.backend_address_pools[0].id }}"
|
|
|
|
|
- name: backendaddrpool1
|
|
|
|
|
load_balancer: "lb{{ rpfx }}"
|
|
|
|
|
create_with_security_group: False
|
|
|
|
|
public_ip: False
|
|
|
|
|
register: output
|
|
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
|
that:
|
|
|
|
|
- not output.changed
|
|
|
|
|
|
|
|
|
|
- name: Remove one ip configuration
|
|
|
|
|
- name: Update security group (check mode)
|
|
|
|
|
azure_rm_networkinterface:
|
|
|
|
|
resource_group: "{{ resource_group }}"
|
|
|
|
|
name: "tn{{ rpfx }}"
|
|
|
|
|
security_group:
|
|
|
|
|
name: "tn{{ rpfx }}2"
|
|
|
|
|
resource_group: "{{ resource_group_secondary }}"
|
|
|
|
|
virtual_network: "{{ vn.state.id }}"
|
|
|
|
|
subnet: "tn{{ rpfx }}"
|
|
|
|
|
ip_configurations:
|
|
|
|
|
- name: ipconfig1
|
|
|
|
|
public_ip_name: "tn{{ rpfx }}3"
|
|
|
|
|
load_balancer_backend_address_pools:
|
|
|
|
|
- "{{ lb.state.backend_address_pools[0].id }}"
|
|
|
|
|
- name: backendaddrpool1
|
|
|
|
|
load_balancer: "lb{{ rpfx }}"
|
|
|
|
|
- name: default
|
|
|
|
|
public_ip_name: "tn{{ rpfx }}"
|
|
|
|
|
public_ip_allocation_method: Static
|
|
|
|
|
primary: True
|
|
|
|
|
register: output
|
|
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
|
that:
|
|
|
|
|
- not output.state.ip_configuration
|
|
|
|
|
- output.state.ip_configurations | length == 2
|
|
|
|
|
|
|
|
|
|
- name: IP configuration without public IP and NSG
|
|
|
|
|
azure_rm_networkinterface:
|
|
|
|
|
resource_group: "{{ resource_group }}"
|
|
|
|
|
name: "tn{{ rpfx }}noip"
|
|
|
|
|
create_with_security_group: False
|
|
|
|
|
virtual_network: "{{ vn.state.id }}"
|
|
|
|
|
subnet: "tn{{ rpfx }}"
|
|
|
|
|
ip_configurations:
|
|
|
|
|
- name: ipconfig1
|
|
|
|
|
primary: True
|
|
|
|
|
public_ip: False
|
|
|
|
|
security_group: "tn{{ rpfx }}sg"
|
|
|
|
|
register: output
|
|
|
|
|
check_mode: yes
|
|
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
|
that:
|
|
|
|
|
- output.state.ip_configurations[0].public_ip_address == None
|
|
|
|
|
- output.state.network_security_group == None
|
|
|
|
|
- output.changed
|
|
|
|
|
|
|
|
|
|
- name: NIC with Accelerated networking enabled
|
|
|
|
|
- name: Update public ip address (check mode)
|
|
|
|
|
azure_rm_networkinterface:
|
|
|
|
|
resource_group: "{{ resource_group }}"
|
|
|
|
|
name: "tn{{ rpfx }}an"
|
|
|
|
|
name: "tn{{ rpfx }}"
|
|
|
|
|
virtual_network: "{{ vn.state.id }}"
|
|
|
|
|
subnet: "tn{{ rpfx }}"
|
|
|
|
|
enable_accelerated_networking: True
|
|
|
|
|
public_ip_address_name: "tn{{ rpfx }}"
|
|
|
|
|
create_with_security_group: False
|
|
|
|
|
register: output
|
|
|
|
|
check_mode: yes
|
|
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
|
that:
|
|
|
|
|
- output.state.enable_accelerated_networking
|
|
|
|
|
- output.changed
|
|
|
|
|
|
|
|
|
|
- name: NIC with Accelerated networking enabled (check idempotent)
|
|
|
|
|
- name: Update accelerated networking (check mode)
|
|
|
|
|
azure_rm_networkinterface:
|
|
|
|
|
resource_group: "{{ resource_group }}"
|
|
|
|
|
name: "tn{{ rpfx }}an"
|
|
|
|
|
name: "tn{{ rpfx }}"
|
|
|
|
|
virtual_network: "{{ vn.state.id }}"
|
|
|
|
|
subnet: "tn{{ rpfx }}"
|
|
|
|
|
enable_accelerated_networking: True
|
|
|
|
|
create_with_security_group: False
|
|
|
|
|
public_ip: False
|
|
|
|
|
register: output
|
|
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
|
that:
|
|
|
|
|
- output.state.enable_accelerated_networking
|
|
|
|
|
- not output.changed
|
|
|
|
|
|
|
|
|
|
- name: Disable (previously enabled) Accelerated networking
|
|
|
|
|
azure_rm_networkinterface:
|
|
|
|
|
resource_group: "{{ resource_group }}"
|
|
|
|
|
name: "tn{{ rpfx }}an"
|
|
|
|
|
virtual_network: "{{ vn.state.id }}"
|
|
|
|
|
subnet: "tn{{ rpfx }}"
|
|
|
|
|
enable_accelerated_networking: False
|
|
|
|
|
register: output
|
|
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
|
that:
|
|
|
|
|
- not output.state.enable_accelerated_networking
|
|
|
|
|
- output.changed
|
|
|
|
|
|
|
|
|
|
- name: Delete AN NIC
|
|
|
|
|
azure_rm_networkinterface:
|
|
|
|
|
resource_group: "{{ resource_group }}"
|
|
|
|
|
name: "tn{{ rpfx }}an"
|
|
|
|
|
state: absent
|
|
|
|
|
register: output
|
|
|
|
|
check_mode: yes
|
|
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
|
that:
|
|
|
|
|
- output.changed
|
|
|
|
|
|
|
|
|
|
- name: NIC with IP forwarding networking enabled
|
|
|
|
|
- name: Update IP forwarding networking (check mode)
|
|
|
|
|
azure_rm_networkinterface:
|
|
|
|
|
resource_group: "{{ resource_group }}"
|
|
|
|
|
name: "tn{{ rpfx }}ipf"
|
|
|
|
|
name: "tn{{ rpfx }}"
|
|
|
|
|
virtual_network: "{{ vn.state.id }}"
|
|
|
|
|
subnet: "tn{{ rpfx }}"
|
|
|
|
|
create_with_security_group: False
|
|
|
|
|
enable_ip_forwarding: True
|
|
|
|
|
public_ip: False
|
|
|
|
|
register: output
|
|
|
|
|
check_mode: yes
|
|
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
|
that:
|
|
|
|
|
- output.state.enable_ip_forwarding
|
|
|
|
|
- output.changed
|
|
|
|
|
|
|
|
|
|
- name: NIC with IP forwarding enabled (check idempotent)
|
|
|
|
|
azure_rm_networkinterface:
|
|
|
|
|
resource_group: "{{ resource_group }}"
|
|
|
|
|
name: "tn{{ rpfx }}ipf"
|
|
|
|
|
virtual_network: "{{ vn.state.id }}"
|
|
|
|
|
subnet: "tn{{ rpfx }}"
|
|
|
|
|
enable_ip_forwarding: True
|
|
|
|
|
register: output
|
|
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
|
that:
|
|
|
|
|
- output.state.enable_ip_forwarding
|
|
|
|
|
- not output.changed
|
|
|
|
|
|
|
|
|
|
- name: Disable (previously enabled) IP forwarding
|
|
|
|
|
- name: Update dns server (check mode)
|
|
|
|
|
azure_rm_networkinterface:
|
|
|
|
|
resource_group: "{{ resource_group }}"
|
|
|
|
|
name: "tn{{ rpfx }}ipf"
|
|
|
|
|
name: "tn{{ rpfx }}"
|
|
|
|
|
virtual_network: "{{ vn.state.id }}"
|
|
|
|
|
subnet: "tn{{ rpfx }}"
|
|
|
|
|
enable_ip_forwarding: False
|
|
|
|
|
register: output
|
|
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
|
that:
|
|
|
|
|
- not output.state.enable_ip_forwarding
|
|
|
|
|
- output.changed
|
|
|
|
|
|
|
|
|
|
- name: Delete IP forwarding NIC
|
|
|
|
|
azure_rm_networkinterface:
|
|
|
|
|
resource_group: "{{ resource_group }}"
|
|
|
|
|
name: "tn{{ rpfx }}ipf"
|
|
|
|
|
state: absent
|
|
|
|
|
create_with_security_group: False
|
|
|
|
|
public_ip: False
|
|
|
|
|
dns_servers:
|
|
|
|
|
- 8.9.10.11
|
|
|
|
|
- 7.8.9.10
|
|
|
|
|
register: output
|
|
|
|
|
check_mode: yes
|
|
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
|
that:
|
|
|
|
|
- output.changed
|
|
|
|
|
|
|
|
|
|
- name: NIC with dns servers
|
|
|
|
|
- name: Update NIC
|
|
|
|
|
azure_rm_networkinterface:
|
|
|
|
|
resource_group: "{{ resource_group }}"
|
|
|
|
|
name: "tn{{ rpfx }}dns"
|
|
|
|
|
name: "tn{{ rpfx }}"
|
|
|
|
|
virtual_network: "{{ vn.state.id }}"
|
|
|
|
|
subnet: "tn{{ rpfx }}"
|
|
|
|
|
enable_accelerated_networking: True
|
|
|
|
|
enable_ip_forwarding: True
|
|
|
|
|
security_group: "tn{{ rpfx }}sg"
|
|
|
|
|
dns_servers:
|
|
|
|
|
- 8.9.10.11
|
|
|
|
|
- 7.8.9.10
|
|
|
|
|
ip_configurations:
|
|
|
|
|
- name: "{{ facts.networkinterfaces[0].ip_configurations[0].name }}"
|
|
|
|
|
private_ip_address: "{{ facts.networkinterfaces[0].ip_configurations[0].private_ip_address }}"
|
|
|
|
|
private_ip_allocation_method: "{{ facts.networkinterfaces[0].ip_configurations[0].private_ip_allocation_method }}"
|
|
|
|
|
primary: "{{ facts.networkinterfaces[0].ip_configurations[0].primary }}"
|
|
|
|
|
- name: ipconfig1
|
|
|
|
|
public_ip_name: "tn{{ rpfx }}"
|
|
|
|
|
load_balancer_backend_address_pools:
|
|
|
|
|
- "{{ lb.state.backend_address_pools[0].id }}"
|
|
|
|
|
- name: backendaddrpool1
|
|
|
|
|
load_balancer: "lb{{ rpfx }}"
|
|
|
|
|
register: output
|
|
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
|
that:
|
|
|
|
|
- output.changed
|
|
|
|
|
- output.state.dns_settings.dns_servers == ['8.9.10.11']
|
|
|
|
|
- output.state.dns_settings.dns_servers == ['8.9.10.11', '7.8.9.10']
|
|
|
|
|
- output.state.enable_ip_forwarding
|
|
|
|
|
- output.state.network_security_group.name == "tn{{ rpfx }}sg"
|
|
|
|
|
- output.state.enable_accelerated_networking
|
|
|
|
|
|
|
|
|
|
- name: NIC with dns servers is idempotent
|
|
|
|
|
- name: Complicated NIC (idempontent)
|
|
|
|
|
azure_rm_networkinterface:
|
|
|
|
|
resource_group: "{{ resource_group }}"
|
|
|
|
|
name: "tn{{ rpfx }}dns"
|
|
|
|
|
name: "tn{{ rpfx }}"
|
|
|
|
|
virtual_network: "{{ vn.state.id }}"
|
|
|
|
|
subnet: "tn{{ rpfx }}"
|
|
|
|
|
enable_accelerated_networking: True
|
|
|
|
|
security_group: "tn{{ rpfx }}sg"
|
|
|
|
|
enable_ip_forwarding: True
|
|
|
|
|
dns_servers:
|
|
|
|
|
- 8.9.10.11
|
|
|
|
|
- 7.8.9.10
|
|
|
|
|
ip_configurations:
|
|
|
|
|
- name: "{{ facts.networkinterfaces[0].ip_configurations[0].name }}"
|
|
|
|
|
private_ip_address: "{{ facts.networkinterfaces[0].ip_configurations[0].private_ip_address }}"
|
|
|
|
|
private_ip_allocation_method: "{{ facts.networkinterfaces[0].ip_configurations[0].private_ip_allocation_method }}"
|
|
|
|
|
primary: "{{ facts.networkinterfaces[0].ip_configurations[0].primary }}"
|
|
|
|
|
- name: ipconfig1
|
|
|
|
|
public_ip_name: "tn{{ rpfx }}"
|
|
|
|
|
load_balancer_backend_address_pools:
|
|
|
|
|
- "{{ lb.state.backend_address_pools[0].id }}"
|
|
|
|
|
- name: backendaddrpool1
|
|
|
|
|
load_balancer: "lb{{ rpfx }}"
|
|
|
|
|
register: output
|
|
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
|
that:
|
|
|
|
|
- not output.changed
|
|
|
|
|
|
|
|
|
|
- name: NIC with dns servers adding server
|
|
|
|
|
azure_rm_networkinterface:
|
|
|
|
|
- name: Get fact of the new created NIC
|
|
|
|
|
azure_rm_networkinterface_facts:
|
|
|
|
|
resource_group: "{{ resource_group }}"
|
|
|
|
|
name: "tn{{ rpfx }}dns"
|
|
|
|
|
virtual_network: "{{ vn.state.id }}"
|
|
|
|
|
subnet: "tn{{ rpfx }}"
|
|
|
|
|
dns_servers:
|
|
|
|
|
- 8.9.10.11
|
|
|
|
|
- 10.11.12.13
|
|
|
|
|
register: output
|
|
|
|
|
name: "tn{{ rpfx }}"
|
|
|
|
|
register: facts
|
|
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
|
that:
|
|
|
|
|
- output.changed
|
|
|
|
|
- output.state.dns_settings.dns_servers | sort() == ['8.9.10.11', '10.11.12.13'] | sort()
|
|
|
|
|
|
|
|
|
|
- name: NIC with dns servers removing server
|
|
|
|
|
- "facts.networkinterfaces | length == 1"
|
|
|
|
|
- facts.networkinterfaces[0].id == output.state.id
|
|
|
|
|
- "facts.networkinterfaces[0].ip_configurations | length == 2"
|
|
|
|
|
- 'facts.networkinterfaces[0].security_group.endswith("tn{{ rpfx }}sg")'
|
|
|
|
|
- facts.networkinterfaces[0].enable_accelerated_networking
|
|
|
|
|
- facts.networkinterfaces[0].enable_ip_forwarding
|
|
|
|
|
|
|
|
|
|
- name: Remove one dns server and ip configuration
|
|
|
|
|
azure_rm_networkinterface:
|
|
|
|
|
resource_group: "{{ resource_group }}"
|
|
|
|
|
name: "tn{{ rpfx }}dns"
|
|
|
|
|
name: "tn{{ rpfx }}"
|
|
|
|
|
virtual_network: "{{ vn.state.id }}"
|
|
|
|
|
subnet: "tn{{ rpfx }}"
|
|
|
|
|
security_group: "tn{{ rpfx }}sg"
|
|
|
|
|
enable_accelerated_networking: True
|
|
|
|
|
enable_ip_forwarding: True
|
|
|
|
|
dns_servers:
|
|
|
|
|
- 10.11.12.13
|
|
|
|
|
- 8.9.10.11
|
|
|
|
|
ip_configurations:
|
|
|
|
|
- name: ipconfig1
|
|
|
|
|
public_ip_name: "tn{{ rpfx }}"
|
|
|
|
|
primary: True
|
|
|
|
|
load_balancer_backend_address_pools:
|
|
|
|
|
- "{{ lb.state.backend_address_pools[0].id }}"
|
|
|
|
|
- name: backendaddrpool1
|
|
|
|
|
load_balancer: "lb{{ rpfx }}"
|
|
|
|
|
register: output
|
|
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
|
that:
|
|
|
|
|
- output.changed
|
|
|
|
|
- output.state.dns_settings.dns_servers == ['10.11.12.13']
|
|
|
|
|
|
|
|
|
|
- name: Delete DNS servers NIC
|
|
|
|
|
azure_rm_networkinterface:
|
|
|
|
|
resource_group: "{{ resource_group }}"
|
|
|
|
|
name: "tn{{ rpfx }}dns"
|
|
|
|
|
state: absent
|
|
|
|
|
- output.state.dns_settings.dns_servers == ['8.9.10.11']
|
|
|
|
|
- output.state.enable_ip_forwarding
|
|
|
|
|
- output.state.network_security_group.name == "tn{{ rpfx }}sg"
|
|
|
|
|
- "output.state.ip_configurations | length == 1"
|
|
|
|
|
- output.state.ip_configurations[0].public_ip_address.name == "tn{{ rpfx }}"
|
|
|
|
|
- output.state.enable_accelerated_networking
|
|
|
|
|
|
|
|
|
|
- name: Delete the NIC (check mode)
|
|
|
|
|
azure_rm_networkinterface:
|
|
|
|
@ -439,11 +334,8 @@
|
|
|
|
|
- name: Delete the NIC
|
|
|
|
|
azure_rm_networkinterface:
|
|
|
|
|
resource_group: "{{ resource_group }}"
|
|
|
|
|
name: "{{ item }}"
|
|
|
|
|
name: "tn{{ rpfx }}"
|
|
|
|
|
state: absent
|
|
|
|
|
with_items:
|
|
|
|
|
- "tn{{ rpfx }}"
|
|
|
|
|
- "tn{{ rpfx }}noip"
|
|
|
|
|
register: output
|
|
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
@ -465,29 +357,6 @@
|
|
|
|
|
azure_rm_loadbalancer:
|
|
|
|
|
resource_group: '{{ resource_group }}'
|
|
|
|
|
name: "lb{{ rpfx }}"
|
|
|
|
|
frontend_ip_configurations:
|
|
|
|
|
- name: frontendipconf0
|
|
|
|
|
public_ip_address: "pip{{ rpfx }}"
|
|
|
|
|
backend_address_pools:
|
|
|
|
|
- name: backendaddrpool0
|
|
|
|
|
- name: backendaddrpool1
|
|
|
|
|
probes:
|
|
|
|
|
- name: prob0
|
|
|
|
|
port: 80
|
|
|
|
|
inbound_nat_pools:
|
|
|
|
|
- name: inboundnatpool0
|
|
|
|
|
frontend_ip_configuration_name: frontendipconf0
|
|
|
|
|
protocol: Tcp
|
|
|
|
|
frontend_port_range_start: 80
|
|
|
|
|
frontend_port_range_end: 81
|
|
|
|
|
backend_port: 8080
|
|
|
|
|
load_balancing_rules:
|
|
|
|
|
- name: lbrbalancingrule0
|
|
|
|
|
frontend_ip_configuration: frontendipconf0
|
|
|
|
|
backend_address_pool: backendaddrpool0
|
|
|
|
|
frontend_port: 80
|
|
|
|
|
backend_port: 80
|
|
|
|
|
probe: prob0
|
|
|
|
|
state: absent
|
|
|
|
|
|
|
|
|
|
- name: delete public ip
|
|
|
|
|