diff --git a/aws_keys.yml b/aws_keys.yml index c8f99721..cc42d024 100644 --- a/aws_keys.yml +++ b/aws_keys.yml @@ -1,11 +1,17 @@ $ANSIBLE_VAULT;1.1;AES256 -64303562343564333464643766356266313030646530373536343832353662363261303061636237 -6566653432356331383130333666306165313039663736310a333762343034386432363332623237 -65343564313764333330393834363464623936353631336133656661333631316534346166383863 -3365333265376132640a323632663263653736343563663433313036663739393364333530643239 -66643336666263356163376565366436326534646364333764353163633435353435313863646537 -65643864326661643566656463353538316266373037623832393463643237363235313364353630 -34353935613736633562656238633434633566323362353839666538633139666566646532323538 -33316664303564366430656366306130353830366566653366633333313463343330306561616330 -30306362346231656535343936613263363466356634376465333639343035316530656364366136 -3535383130306365323966656631376466653034666138333263 +38383866643638396162383732383831376338363331643662313330323136353965633938393233 +3365666531663163633835613366623136333163376637330a626336366330613564356561666632 +36633862316238623431633564633738306561663137393563613861643662336366303262373465 +3463623333323563620a626239396630306632656532666139386231346665323534346562383031 +37386438663562663536333865663930326436306130333965663335666563623963613565646562 +33336361663732306236313339363639303665383638633362663636313865636564326537623039 +30633230643866393032613464326531633935653136383239323039643861373365636531383437 +65316161633734393632663334343039616161323061373064626532343162323336623066663564 +64623736356239303830633639326266306363323961373461326265393164326565323932373734 +39383836323864326332326332376633333962393338653137333230383830343066363530396538 +31313837386236626262613462353533633663396464326565616365326630353831333532656565 +35366236656130346261313833653761333030633731353531366435613662663464323234313531 +30343630316466353964336238656362333164313162333332613633393430393039636338633131 +35643032333035383230363665323137306161356636616666376463323731636262346534306263 +31396536313533613635333936353433383463363831386531636531316338633965646437666435 +64343031666236363738 diff --git a/roles/internal/asu-common/tasks/drush.yml b/roles/internal/asu-common/tasks/drush.yml index d7c1f1ef..b4d9deea 100644 --- a/roles/internal/asu-common/tasks/drush.yml +++ b/roles/internal/asu-common/tasks/drush.yml @@ -47,3 +47,25 @@ # - name: select the bundle types to display the fedora URL by default # command: '{{ drush_path }} --root {{ drupal_core_path }} config-set "islandora.settings" ' +- name: enable asu_taxonomies module + command: '{{ drush_path }} --root {{drupal_core_path}} pm-enable asu_taxonomies' + args: + chdir: /var/www/html/drupal/web + +- name: run asu_taxonomies migrations + command: '{{ drush_path }} --root {{drupal_core_path}} migrate:import --group asu_taxonomies' + args: + chdir: /var/www/html/drupal/web + +- name: set smtp access key from the vault + when: inventory_dir is regex("stage|prod|aws") + command: '{{ drush_path }} --root {{drupal_core_path}} config:set smtp.settings smtp_username {{aws_smtp_access_key}}' + args: + chdir: /var/www/html/drupal/web + + +- name: set smtp password from the vault + when: inventory_dir is regex("stage|prod|aws") + command: '{{ drush_path }} --root {{drupal_core_path}} config:set smtp.settings smtp_password {{aws_smtp_secret_key}}' + args: + chdir: /var/www/html/drupal/web