Skip to content
This repository was archived by the owner on Jul 30, 2023. It is now read-only.

haxorof/ansible-role-hashicorp-tools

Repository files navigation

ansible-role-hashicorp-tools Deprecated

Ansible Role GitHub tag License: MIT Build Status

Installs HashiCorp's open source DevOps Tool Suite.

  • Easy install of HashiCorp's open source DevOps Tool Suite.
    • Consul
    • Nomad
    • Packer
    • Terraform
    • Vault
  • Installs tools in accordans with Filesystem Hierarchy Standard
    • Binaries under /opt
    • Configruation under /etc/opt
    • Variable data under /var/opt
  • Add tools to system path for easier access
    • Symbolic links under /opt/bin
  • Consul integrated with systemd
  • Packer environment variables set up in accordans with Filesystem Hierarchy Standard

Changelog

See changelog here

Ansible Compatibility

  • 2.4 or later

Requirements

No additional requirements.

Role Variables

Variables related to this role are listed below:

# Enable Consul service.
hashicorp_consul_service_enabled: true
# Consul data directory.
hashicorp_consul_data_dir: '/var/opt/consul'
# Consul configuration directory.
hashicorp_consul_config_dir: '/etc/opt/consul.d'
# Consul configuration files:
hashicorp_consul_config_files: []
# Default Consul opts for agent
hashicorp_consul_default_opts: '-config-dir={{ hashicorp_consul_config_dir }}'
# Consul agent options.
hashicorp_consul_agent_opts: '{{ hashicorp_consul_default_opts }}'
# Consul config test options.
hashicorp_consul_configtest_opts: '-quiet {{ hashicorp_consul_config_dir }}'
# Default Key-Value configuration for Consul.
hashicorp_consul_default_kv_config:
  data_dir: "{{ hashicorp_consul_data_dir }}"
  log_level: 'INFO'
  enable_syslog: true
  leave_on_terminate: true
  disable_update_check: true
# Key-Value configuration which generates file /etc/opt/consul.d/00-generated.json
hashicorp_consul_kv_config: "{{ hashicorp_consul_default_kv_config }}"

# Packer cache directory.
hashicorp_packer_cache_dir: '/var/opt/packer/cache'
# Packer log. Empty string or 0 equals disabled.
hashicorp_packer_log: 0
# Packer log directory.
hashicorp_packer_log_dir:  '/var/log/packer'
# Packer version checker. Disabled when set to 1.
hashicorp_packer_checkpoint_disable: 1

Dependencies

None.

Example Playbook

Example how to write to install and remove HashiCorp open source DevOps tools:

---
- hosts: localhost
  roles:
    - role: haxorof.hashicorp-tools
      hashicorp_tools:
        packer:
          state: 0.12.0
        terraform:
          state: latest
        nomad:
          state: absent
        consul:
          state: present

License

This is an open source project under the MIT license.

About

Ansible role to install HashiCorp's open source DevOps Tool Suite

Topics

Resources

License

Contributing

Stars

Watchers

Forks

Packages

No packages published

Contributors 2

  •  
  •