Browse Source

change groups name to be compliant to the new characters rule

SiM 4 years ago
parent
commit
afa0a5023b
5 changed files with 6 additions and 6 deletions
  1. 2 2
      hosts
  2. 1 1
      playbooks/add-ssh-key.yml
  3. 1 1
      playbooks/remove-ssh-key.yml
  4. 1 1
      playbooks/upgrade_dev.yml
  5. 1 1
      playbooks/upgrade_prod.yml

+ 2 - 2
hosts

@@ -2,14 +2,14 @@ tera-host
 tera-dev-agora
 tera-prod-agora
 
-[tera-dev]
+[tera_dev]
 tera-dev-site
 tera-dev-discourse
 tera-dev-katao
 test-dolibarr
 tera-test-yuno
 
-[tera-prod]
+[tera_prod]
 tera-reverse-proxy
 tera-prod-site
 tera-prod-discourse

+ 1 - 1
playbooks/add-ssh-key.yml

@@ -1,6 +1,6 @@
 # Déployer une clé ssh sur tous les serveurs
 ---
-- hosts: tera-host:tera-dev:tera-prod
+- hosts: tera-host:tera_dev:tera_prod
   tasks:
      - name: Set authorized key taken from file
        authorized_key:

+ 1 - 1
playbooks/remove-ssh-key.yml

@@ -1,6 +1,6 @@
 # Supprimer une clé ssh sur tous les serveurs
 ---
-- hosts: tera-host:tera-dev:tera-prod
+- hosts: tera-host:tera_dev:tera_prod
   tasks:
      - name: Remove authorized key taken from file
        authorized_key:

+ 1 - 1
playbooks/upgrade_dev.yml

@@ -1,6 +1,6 @@
 # Update and upgrade dev servers
 ---
-- hosts: tera-dev
+- hosts: tera_dev
   tasks:
      - name: Update and dist-upgrade
        apt:

+ 1 - 1
playbooks/upgrade_prod.yml

@@ -1,6 +1,6 @@
 # Update and upgrade prod servers
 ---
-- hosts: tera-prod
+- hosts: tera_prod
   tasks:
      - name: Update and dist-upgrade
        apt: