Skip to content

Instantly share code, notes, and snippets.

View AlMaVizca's full-sized avatar
🏠
Working from home

Aldo AlMaVizca

🏠
Working from home
View GitHub Profile
- hosts: localhost
tasks:
- name: Add cloudflare
cloudflare_dns:
zone: "{{ zone }}"
record: "{{ record }}"
type: "{{ type }}"
value: "{{ destination }}"
solo: true
proxied: yes

Keybase proof

I hereby claim:

  • I am almavizca on github.
  • I am krahser (https://keybase.io/krahser) on keybase.
  • I have a public key ASAFCgeIqI8wMNfbSVQrMTTDJy3hyIkETm-2ETHiPvy9hQo

To claim this, I am signing this object:

@AlMaVizca
AlMaVizca / redmine-install.yml
Created November 2, 2014 23:21
ansible play redmine install
---
- name: Install version 2.5.2
hosts: Ansible
roles:
- { role: redmine, mysql_root_password: "dificil", db_host: "127.0.0.1", db_name: "redmine", db_username: "admin", db_password: "unaContrasenia", redmine_version: "2.5.2" }
@AlMaVizca
AlMaVizca / redmine-update.yml
Created November 2, 2014 23:19
ansible play redmine update
---
- name: Update to last version
hosts: Ansible
roles:
- { role: redmine, update: true, db_name: "redmine", db_username: "admin", db_password: "unaContrasenia"}