initial commit

main
Ueli Bosshard 5 months ago
commit 88f338dd69

@ -0,0 +1,19 @@
---
- name: Apache2 auf Remote-Server installieren
hosts: ubo5
remote_user: debian
become: true
tasks:
- name: Apache2 installieren
apt:
name: apache2
state: present
update_cache: yes
- name: Apache2 aktivieren und starten
service:
name: apache2
state: started
enabled: true

@ -0,0 +1,12 @@
---
- name: Using cloudscale.ch collection
hosts: localhost
collections:
- cloudscale_ch.cloud
tasks:
- server:
name: ubo5
image: debian-12
flavor: flex-4-1
ssh_keys:
- ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJl6TPTdcIoONUYBYFF7T96JJ1SNq9VeFOzR7LUNoFHJ ueli@Air-von-Ueli

@ -0,0 +1,9 @@
---
- name: Using cloudscale.ch collection
hosts: localhost
collections:
- cloudscale_ch.cloud
tasks:
- server:
state: absent
name: ubo5

@ -0,0 +1 @@
plugin: cloudscale
Loading…
Cancel
Save