Skip to content

Commit c1e2296

Browse files
committed
Update main.yml to correctly reference subnet_id
1 parent 12ef375 commit c1e2296

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tasks/main.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,14 @@
2525
- name: checking subnet for next available ip address
2626
uri:
2727
validate_certs: false
28-
url: "{{ ipam.available_ip }}{{ subnet_id | int }}"
28+
url: "{{ ipam.available_ip }}{{ ipam.subnet_id | int }}"
2929
headers: token="{{ output.json.data.token }}"
3030
register: ip_address
3131

3232
- name: reserve ip address
3333
uri:
3434
validate_certs: false
35-
url: "{{ ipam.available_ip }}{{ subnet_id | int }}"
35+
url: "{{ ipam.available_ip }}{{ ipam.subnet_id | int }}"
3636
method: POST
3737
headers:
3838
token: "{{ output.json.data.token }}"

0 commit comments

Comments
 (0)