diff --git a/playbooks/groups/overcloud-config.yml b/playbooks/groups/overcloud-config.yml index 0f537d7235..5d1c22dd7c 100644 --- a/playbooks/groups/overcloud-config.yml +++ b/playbooks/groups/overcloud-config.yml @@ -288,7 +288,7 @@ - name: add rule to new security group (ssh-from-persistent) os_security_group_rule: - security_group: 'ssh-from-persistent-{{item}}' + security_group: 'ssh-from-persistent-{{item.name}}' cloud: "{{ os_cloud }}" direction: "ingress" port_range_min: "22" @@ -296,7 +296,7 @@ ethertype: "IPv4" protocol: "tcp" remote_ip_prefix: "{{ item.prefix }}" - project: "{{item}}" + project: "{{item.name}}" with_items: - { name: copr, prefix: '172.25.80.1/20' } - { name: coprdev, prefix: '172.25.80.1/20' }