Skip to content

Commit

Permalink
description issues?
Browse files Browse the repository at this point in the history
  • Loading branch information
jmcalalang committed Jun 12, 2024
1 parent 8cde38f commit cdb50af
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions nginx/ansible/configuration/roles/nginx/tasks/main.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# NGINX Application Services

# Create Configuration In NGINX One Tenant {{ nginx-one-f5xc-tenant }}
# Create Configuration In NGINX One Tenant

- name: Verify NGINX One {{ nginx-one-f5xc-tenant }} is Available
- name: Verify NGINX One is Available
delegate_to: localhost
uri:
headers:
Expand All @@ -17,12 +17,12 @@
until: "(nginx_one_instances_summary_response is successful) and (nginx_one_instances_summary_response.status == 200)"
when: state == "present"

- name: Template NGINX One {{ nginx-one-f5xc-tenant }} azure-instances Group Declaration
- name: Template NGINX One azure-instances Cluster Declaration
template: src="../config/azure-instances/nginx.tpl" dest="../config/azure-instances/nginx.json"
delegate_to: localhost
when: state == "present"

- name: Create or update NGINX One {{ nginx-one-f5xc-tenant }} azure-instances Group Declaration
- name: Create or update NGINX One azure-instances Cluster Declaration
delegate_to: localhost
uri:
body: "{{ lookup('ansible.builtin.file','../config/azure-instances/nginx.json') }}"
Expand All @@ -38,5 +38,5 @@
delay: 5
until: "(result.status == 200) or (result.status == 202)"
with_items:
- "{{ azure_instances }}"
- azure_instances
when: state == "present"

0 comments on commit cdb50af

Please sign in to comment.