ansible-collections / azure

Development area for Azure Collections
https://galaxy.ansible.com/azure/azcollection
GNU General Public License v3.0
246 stars 332 forks source link

azure_rm_loadbalancer support for outbound rules #162

Open wrprice opened 4 years ago

wrprice commented 4 years ago
SUMMARY

Add Outbound Rule support to _azure_rmloadbalancer.

ISSUE TYPE
COMPONENT NAME

azure_rm_loadbalancer

ADDITIONAL INFORMATION

Support something like:

- azure_rm_loadbalancer:
    name: outboundOnlyLb
    resource_group: myRg
    sku: Standard
    frontend_ip_configurations:
      - name: egressIp
        public_ip_address: myPip
    backend_address_pools:
      - name: egressPool
    outbound_rules:
      - name: egressPoolRule
        frontend_ip_configuration: egressIp
        backend_address_pool: egressPool
        protocol: All
        idle_timeout: 4 # minutes
        tcp_reset: yes
        port_allocation:
          method: "ports_per_instance" # other options: "default", "maximum_backend_instances"
          limit: 1024 # ignored when `method` = "default"
Fred-sun commented 4 years ago

@wrprice Thank you very much for submitting this problem. We will investigate. Thank you very much!

abringard commented 10 months ago

Hi there,

Is there any news on this feature request?

Cheers, Aymeric

Fred-sun commented 10 months ago

@abringard I'm working on this! Thank you very much!

abringard commented 10 months ago

Fantastic! :)

Thanks to you!