ITOPS-2059 adding tags to tasks which only apply to new stacks so they can be skipped by clones

This commit is contained in:
Geoff Jacobs
2019-08-21 11:25:24 +10:00
parent 9465537517
commit ceba8d47ba
4 changed files with 17 additions and 5 deletions

View File

@@ -9,6 +9,8 @@
name: "{{ atl_jdbc_user }}"
password: "{{ atl_jdbc_password }}"
expires: 'infinity'
tags:
- new_only
- name: Update root privs for new user
postgresql_privs:
@@ -19,6 +21,8 @@
roles: "{{ atl_db_root_user }}"
objs: "{{ atl_jdbc_user }}"
type: group
tags:
- new_only
- name: Create application database
postgresql_db:
@@ -32,3 +36,5 @@
lc_collate: "{{ atl_jdbc_collation }}"
lc_ctype: "{{ atl_jdbc_ctype }}"
template: "{{ atl_jdbc_template }}"
tags:
- new_only