From cdb50af2c64ac292b84ca0624bec816b4d98995c Mon Sep 17 00:00:00 2001 From: Jon Calalang Date: Wed, 12 Jun 2024 08:37:30 -0700 Subject: [PATCH] description issues? --- .../ansible/configuration/roles/nginx/tasks/main.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/nginx/ansible/configuration/roles/nginx/tasks/main.yaml b/nginx/ansible/configuration/roles/nginx/tasks/main.yaml index 3834dff..27b15cb 100644 --- a/nginx/ansible/configuration/roles/nginx/tasks/main.yaml +++ b/nginx/ansible/configuration/roles/nginx/tasks/main.yaml @@ -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: @@ -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') }}" @@ -38,5 +38,5 @@ delay: 5 until: "(result.status == 200) or (result.status == 202)" with_items: - - "{{ azure_instances }}" + - azure_instances when: state == "present"