Merge "Create SG rule for Octavia log offloading" into stable/train

This commit is contained in:
Zuul 2021-12-21 04:23:36 +00:00 committed by Gerrit Code Review
commit 044384ac83
1 changed files with 12 additions and 0 deletions

View File

@ -101,3 +101,15 @@
OS_USERNAME: "{{ auth_username }}"
OS_PASSWORD: "{{ auth_password }}"
OS_PROJECT_NAME: "{{ auth_project_name }}"
- name: create security group rule for log offloading
openstack.cloud.security_group_rule:
security_group: "{{ lb_health_mgr_sec_grp_name }}"
protocol: udp
port_range_min: 514
port_range_max: 514
remote_ip_prefix: 0.0.0.0/0
environment:
OS_USERNAME: "{{ auth_username }}"
OS_PASSWORD: "{{ auth_password }}"
OS_PROJECT_NAME: "{{ auth_project_name }}"