Skip to content

Commit

Permalink
fix for required_variables
Browse files Browse the repository at this point in the history
  • Loading branch information
cicharka committed Apr 5, 2024
1 parent 2f587cc commit 3b8238e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ Before you begin, ensure you have met the following requirements:
In `requirements.yml` inside your project add:

```yml
- name: git@sdwan-git.cisco.com:sdwan-tools/cisco.sdwan_deployment.git
- name: git@github.com:cisco-open/ansible-collection-sdwan-deployment.git
type: git
version: main
```
Expand Down
2 changes: 1 addition & 1 deletion roles/azure_edges/tasks/azure_cedge_vm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@
cedge_transport_public_ip: "{{ az_transport_public_ip.ip_address }}"

- name: "Set vpn0_default_gateway fact from VPN 0 subnet value"
sansible.builtin.et_fact:
ansible.builtin.set_fact:
vpn0_default_gateway: "{{ subnet.cidr | ansible.utils.ipaddr('1') | ansible.utils.ipaddr('address') }}"
loop: "{{ az_subnets }}"
loop_control:
Expand Down
2 changes: 1 addition & 1 deletion roles/azure_edges/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
- name: Assert all required variables for Azure cEdges deployment
ansible.builtin.include_role:
name: common
tasks_from: aws_required_variables
tasks_from: required_variables
defaults_from: az_required_vars_edges.yml

- name: "Replace underscores with hyphens in the az_resources_prefix string"
Expand Down
2 changes: 1 addition & 1 deletion roles/template_cloudinit/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
- name: Assert all required variables for AWS cloudinit generation
ansible.builtin.include_role:
name: common
tasks_from: aws_required_variables
tasks_from: required_variables
defaults_from: required_vars_controllers.yml

- name: "Prepare directory for results, path: {{ results_dir }}"
Expand Down

0 comments on commit 3b8238e

Please sign in to comment.