We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 531c351 commit 128264cCopy full SHA for 128264c
tests/integration/targets/setup_connection_aws_ssm/tasks/main.yml
@@ -35,11 +35,11 @@
35
name: '{{ ami_configuration.name }}'
36
register: ec2_amis
37
when:
38
- - ami_configuration.name | default(False)
+ - ami_configuration.name is defined
39
40
- name: AMI Lookup (SSM Parameter)
41
42
- - ami_configuration.ssm_parameter | default(False)
+ - ami_configuration.ssm_parameter is defined
43
block:
44
- ansible.builtin.set_fact:
45
ssm_amis: "{{ lookup('amazon.aws.ssm_parameter', ami_configuration.ssm_parameter, **connection_args) }}"
0 commit comments