File tree Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change 6262 open_firewall:
6363 description:
6464 - Whether the firewall rule for public port should be created, while creating the new rule.
65+ - Not supported when forwarding ports in a VPC.
6566 - Use M(cs_firewall) for managing firewall rules.
6667 default: no
6768 type: bool
7172 type: str
7273 network:
7374 description:
74- - Name of the network.
75+ - Name of the network. Required when forwarding ports in a VPC.
7576 type: str
7677 vpc:
7778 description:
140141 public_port: 22
141142 private_port: 22
142143 state: absent
144+
145+ - name: forward SSH in backend tier of VPC
146+ ngine_io.cloudstack.cs_portforward:
147+ ip_address: '{{ public_ip }}'
148+ vm: '{{ inventory_hostname }}'
149+ public_port: '{{ ansible_ssh_port }}'
150+ private_port: 22
151+ vpc: myVPC
152+ network: backend
143153'''
144154
145155RETURN = '''
You can’t perform that action at this time.
0 commit comments