From 27acedb9b8ee294d14cb6653693da98e20b013a7 Mon Sep 17 00:00:00 2001 From: David Kirwan Date: Thu, 11 Aug 2022 11:37:06 +0100 Subject: [PATCH] communishift: debugging variable substitution Signed-off-by: David Kirwan Signed-off-by: Lenka Segura Signed-off-by: Patrik Polakovic --- roles/communishift/tasks/create-efs.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/roles/communishift/tasks/create-efs.yml b/roles/communishift/tasks/create-efs.yml index e870345c73..8e024df478 100644 --- a/roles/communishift/tasks/create-efs.yml +++ b/roles/communishift/tasks/create-efs.yml @@ -3,13 +3,13 @@ tags: - create_efs community.aws.efs: - aws_access_key: "{{ communishift_efs_access_key }}" - aws_secret_key: "{{ communishift_efs_secret_key }}" + aws_access_key: {{ communishift_efs_access_key }} + aws_secret_key: {{ communishift_efs_secret_key }} state: present - name: "{{ communishift_efs_name }}" + name: {{ communishift_efs_name }} tags: Name: communishift - region: "{{ communishift_region }}" + region: {{ communishift_region }} targets: - - subnet_id: "{{ communishift_subnet_id }}" + - subnet_id: {{ communishift_subnet_id }} security_groups: [ "{{ communishift_security_group }}" ]