{"id":19402375,"url":"https://github.com/robertdebock/ansible-role-vault_configuration","last_synced_at":"2025-04-24T07:31:42.924Z","repository":{"id":65717828,"uuid":"596570669","full_name":"robertdebock/ansible-role-vault_configuration","owner":"robertdebock","description":"Configure HashiCorp Vault on your system.","archived":false,"fork":false,"pushed_at":"2024-04-23T17:57:45.000Z","size":129,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2024-05-02T02:19:56.744Z","etag":null,"topics":["ansible","molecule","playbook","security","tox","vaultconfiguration"],"latest_commit_sha":null,"homepage":"https://robertdebock.nl/","language":"Jinja","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/robertdebock.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":"robertdebock"}},"created_at":"2023-02-02T13:29:42.000Z","updated_at":"2024-07-24T14:42:49.516Z","dependencies_parsed_at":"2023-02-19T07:31:12.864Z","dependency_job_id":"a9a099c7-9dbf-4527-aa5a-9dfdd0c7e968","html_url":"https://github.com/robertdebock/ansible-role-vault_configuration","commit_stats":null,"previous_names":[],"tags_count":22,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/robertdebock%2Fansible-role-vault_configuration","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/robertdebock%2Fansible-role-vault_configuration/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/robertdebock%2Fansible-role-vault_configuration/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/robertdebock%2Fansible-role-vault_configuration/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/robertdebock","download_url":"https://codeload.github.com/robertdebock/ansible-role-vault_configuration/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":223944913,"owners_count":17229540,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ansible","molecule","playbook","security","tox","vaultconfiguration"],"created_at":"2024-11-10T11:23:25.470Z","updated_at":"2024-11-10T11:23:26.198Z","avatar_url":"https://github.com/robertdebock.png","language":"Jinja","funding_links":["https://github.com/sponsors/robertdebock"],"categories":[],"sub_categories":[],"readme":"# [Ansible role vault_configuration](#vault_configuration)\n\nConfigure HashiCorp Vault on your system.\n\n|GitHub|GitLab|Downloads|Version|\n|------|------|---------|-------|\n|[![github](https://github.com/robertdebock/ansible-role-vault_configuration/workflows/Ansible%20Molecule/badge.svg)](https://github.com/robertdebock/ansible-role-vault_configuration/actions)|[![gitlab](https://gitlab.com/robertdebock-iac/ansible-role-vault_configuration/badges/master/pipeline.svg)](https://gitlab.com/robertdebock-iac/ansible-role-vault_configuration)|[![downloads](https://img.shields.io/ansible/role/d/robertdebock/vault_configuration)](https://galaxy.ansible.com/robertdebock/vault_configuration)|[![Version](https://img.shields.io/github/release/robertdebock/ansible-role-vault_configuration.svg)](https://github.com/robertdebock/ansible-role-vault_configuration/releases/)|\n\n## [Example Playbook](#example-playbook)\n\nThis example is taken from [`molecule/default/converge.yml`](https://github.com/robertdebock/ansible-role-vault_configuration/blob/master/molecule/default/converge.yml) and is tested on each push, pull request and release.\n\n```yaml\n---\n- name: Converge\n  hosts: all\n  become: true\n  gather_facts: true\n\n  roles:\n    - role: robertdebock.vault_configuration\n```\n\nThe machine needs to be prepared. In CI this is done using [`molecule/default/prepare.yml`](https://github.com/robertdebock/ansible-role-vault_configuration/blob/master/molecule/default/prepare.yml):\n\n```yaml\n---\n- name: Prepare\n  hosts: all\n  become: true\n  gather_facts: false\n\n  roles:\n    - role: robertdebock.bootstrap\n    - role: robertdebock.core_dependencies\n    - role: robertdebock.hashicorp\n    - role: robertdebock.vault\n      vault_hardening_disable_swap: false\n```\n\nAlso see a [full explanation and example](https://robertdebock.nl/how-to-use-these-roles.html) on how to use these roles.\n\n## [Role Variables](#role-variables)\n\nThe default values for the variables are set in [`defaults/main.yml`](https://github.com/robertdebock/ansible-role-vault_configuration/blob/master/defaults/main.yml):\n\n```yaml\n---\n# defaults file for vault_configuration\n\n# The owner and group owning files and directories managed by this role.\nvault_configuration_owner: vault\nvault_configuration_group: vault\n\n# Set the license. Required when Vault enterprise is being used.\n# The role `robertdebock.vault` can install Vault enterprise by setting:\n# - `vault_type` to `\"ent\"` or `\"hsm\"`.\n# vault_configuration_license: \"XYZABC\"\n\n# Specify the location where TLS material should be placed. This is typically `/opt/vault/tls`.\nvault_configuration_tls_directory: \"/opt/vault/tls\"\n\n#\n# GLOBAL SETTINGS\n#\n\n# These are \"global\" settings.\n# Values used below are taken from: https://developer.hashicorp.com/vault/docs/configuration\nvault_configuration_max_lease_ttl: \"768h\"\nvault_configuration_default_lease_ttl: \"768h\"\nvault_configuration_api_addr: \"https://{{ ansible_fqdn }}:8200\"\nvault_configuration_cluster_addr: \"https://{{ ansible_fqdn }}:8201\"\nvault_configuration_disable_cache: false\nvault_configuration_disable_mlock: true\nvault_configuration_disable_clustering: false\nvault_configuration_plugin_directory: \"\"\nvault_configuration_ui: false\nvault_configuration_log_level: \"\"\n\n#\n# LISTENER SETTINGS\n#\n\n# These are \"listener\" settings, there can be multiple listeners.\nvault_configuration_listeners:\n  - type: \"tcp\"\n    address: \"127.0.0.1:8200\"\n    cluster_address: \"127.0.0.1:8201\"\n    http_idle_timeout: \"5m\"\n    http_read_header_timeout: \"10s\"\n    http_read_timeout: \"30s\"\n    http_write_timeout: \"0\"\n    max_request_size: 33554432\n    max_request_duration: \"90s\"\n    proxy_protocol_behavior: \"\"\n    proxy_protocol_authorized_addrs: \"\"\n    tls_disable: false\n    # You can specify a file (`tls_cert_file`) OR the content of the file (`tls_cert`).\n    # tls_cert_file: \"/opt/vault/tls/vault.crt\"\n    tls_cert: |\n      -----BEGIN CERTIFICATE-----\n      MIIDlDCCAnwCCQDKshDt/N9YbTANBgkqhkiG9w0BAQsFADCBiTELMAkGA1UEBhMC\n      TkwxEDAOBgNVBAgMB1VUUkVDSFQxEjAQBgNVBAcMCUJyZXVrZWxlbjEXMBUGA1UE\n      CgwOUm9iZXJ0IGRlIEJvY2sxGjAYBgNVBAMMEUNBIFJvYmVydCBkZSBCb2NrMR8w\n      HQYJKoZIhvcNAQkBFhByb2JlcnRAbWVpbml0Lm5sMB4XDTIzMDIxMzA4NTg1MloX\n      DTIzMDMxNTA4NTg1MlowgY0xCzAJBgNVBAYTAk5MMRAwDgYDVQQIDAdVVFJFQ0hU\n      MRIwEAYDVQQHDAlCcmV1a2VsZW4xFzAVBgNVBAoMDlJvYmVydCBkZSBCb2NrMR4w\n      HAYDVQQDDBV2YXVsdC5yb2JlcnRkZWJvY2submwxHzAdBgkqhkiG9w0BCQEWEHJv\n      YmVydEBtZWluaXQubmwwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDN\n      LeDgfuElvJL+EPY6zaPx/lF8nblytGvxIy/8BBpsu9wyvI0Ty9XXxk7alwdTM+mE\n      LYA1Nznnk0ekC9gaQTLRUGqTOJ92la0Z6M4/yVxe9gvN5yNsUjU01dXXiFzgx0e4\n      usdnrqkZchi5Ib0SunHm1sE0O3uEYdW9mJrqWb25HLLmQwtrztr9bE5PBUH8CzlX\n      fqM6+6e2e1pnmPmt533GtIJcwfBg+pUkc01EfhKzLjtILgAijfx+m+XjpKShGLUg\n      QTL4V9fmXCmPBP0IYjw8I5k64aBLTQ/oj1sw4EzkaVKxTtluiAENDf2x9yPaoH3x\n      PkPG36D5/4JK90THTihlAgMBAAEwDQYJKoZIhvcNAQELBQADggEBAAdPO8l+ww5p\n      YJKZ3COyzz/RWHQ4R1fH3KQE53Jk4kjARoEcuh34YQJ3uWbiyrMMorHUrKStWrEO\n      297pMizrA45bFm79gwoZ1yI/2WdejnC86JFdAbHRWLkEKs40Fy9JhEU0ouHLk7ya\n      Gr9hGKWNVJmnNpk+xpmIY1hi5L4Opb8/hRe16MzhpVivyenyekEpu4S0muZXvUKt\n      igLKDsMemBMADA1xS05IJ8PVfSpsGxhB9cga1DL94Bpq+p1ZSSbupQUNEIObi8BK\n      vIciVdKVLy30rGn2JGKSEQ9fnULuZUWxjOv0awqKRpFE5WVnav2iwF4pzvRxFw7Y\n      ba0Ft217IrI=\n      -----END CERTIFICATE-----\n    # You can specify a file (`tls_file_key`) OR the content of the file (`tls_key`).\n    # tls_key_file: \"/opt/vault/tls/vault.key\"\n    tls_key: |\n      -----BEGIN PRIVATE KEY-----\n      MIIEvgIBADANBgkqhkiG9w0BAQEFAASCBKgwggSkAgEAAoIBAQDNLeDgfuElvJL+\n      EPY6zaPx/lF8nblytGvxIy/8BBpsu9wyvI0Ty9XXxk7alwdTM+mELYA1Nznnk0ek\n      C9gaQTLRUGqTOJ92la0Z6M4/yVxe9gvN5yNsUjU01dXXiFzgx0e4usdnrqkZchi5\n      Ib0SunHm1sE0O3uEYdW9mJrqWb25HLLmQwtrztr9bE5PBUH8CzlXfqM6+6e2e1pn\n      mPmt533GtIJcwfBg+pUkc01EfhKzLjtILgAijfx+m+XjpKShGLUgQTL4V9fmXCmP\n      BP0IYjw8I5k64aBLTQ/oj1sw4EzkaVKxTtluiAENDf2x9yPaoH3xPkPG36D5/4JK\n      90THTihlAgMBAAECggEBAL0sxL8YHOyXPowkBXLYMYWob2dPYTHiKfft8osRGXAR\n      kYfyEr0i3iqRPBkM0QMkxPRKo3/tSGU8hPw6s2gZnwogc/MDbPuAK1bNMITdWl5v\n      yxhwOVfhQA9T7VNI9iGFe5pWFA6DmoPMkAD5m4NOBkDI1uAay9qV/eVOc98JGQU3\n      Scc5H9gMvxe2J0njyUv+W4p5y8oMz0iVxqDvbQEduUuVZ7xKp1YysitfKViss2ej\n      Ug3VcsPltuUrARfC/vO5PYJ2BXt9tHxPfu+nykGi42zAM6ex4xJyFiXnpZBOvjk1\n      XIklhN9CoelxoECAxl7YgtweRwlbKf7belYd61HkmS0CgYEA9/zlX/BjIgmQjG7T\n      odbb36pw9qW5M8ZVIIPQj5hndtPlGoESjcmHeogV1zAmsKvnQ6BuRUB4ZUh/nEpf\n      HMPY1UaJ1L9jR8GjXh9mlVMAStYVwOxU2iILYditQ+BzLbr4ChNriI/Zo1/wIhxZ\n      fk/cyutSF4z+RJ3C3+wPCk1n7H8CgYEA087pobuaiF5vSlnbjHIbb4zxPrxT1rW3\n      k5KTC6RyMVW92yoOr6Gwgizzyq+qW4YSs3lePfN9oHxkkFJ9SU1/uV2ta64fnsxI\n      HqbbgsMTKX1BbtkxNDYOCWvduJmC83LBYPVblPDvSr4G7zqxWyo3PQm9O/MrbtlW\n      zrjGJrEYSRsCgYAINB2CZvlgjuBxRNlLaUgsxf6mqiTOSalXQgUMOwZxL+FMVyi9\n      +AS7UPUoATfGcGleG1iKge95qkROb0dmNDRgGc1FdG9cWFOHMZK7Ldu8nghqMWc9\n      MBMgUYKp1Cr7QEwkSTAtfFS+ytWuyzFKtGmhbNdyX/+pVW606aI1vQnLEQKBgQC0\n      jXtHLR7sBGQmIzcuH88XZjP34J4vNzRIDfhfQk09lPOEsfNW8CQAs8UWEGzOHBow\n      99LISJnchm1LQaYfKHsqTpqYYhP+T/Fif6Y7b4MUKPvwPCDfevy4N0UIKYQhdr81\n      obHx4vh45EgRAh1Rs0jnNTgktINfuNFw4r23Gduz5QKBgD1qGo2Yjtk9blNV5v4Z\n      oEKp5NQ+2Fbkpwl9k+nyA9CaSs98uf7C7Br7vrt/JBjAu447p/myeT9GiJSao6xj\n      g8DTnnIvFuiLS9NKJMH4S2sd7P73j9djdV8J0qpxiEE6PMGjXrz455G6vowdKldu\n      xWZvV9q5Ouxf7iRPf3o2cfKw\n      -----END PRIVATE KEY-----\n    tls_min_version: \"tls12\"\n    tls_cipher_suites: \"\"\n    tls_require_and_verify_client_cert: false\n    tls_client_ca_file: \"\"\n    tls_disable_client_certs: false\n    x_forwarded_for_authorized_addrs: \"\"\n    x_forwarded_for_hop_skips: 0\n    x_forwarded_for_reject_not_authorized: true\n    x_forwardesd_for_reject_not_present: true\n    telemetry:\n      unauthenticated_metrics_access: false\n    profiling:\n      unauthenticated_pprof_access: false\n      unauthenticated_in_flight_request_access: false\n  - type: \"unix\"\n    address: \"/run/vault/vault.sock\"\n    socket_mode: \"666\"\n    socket_user: \"vault\"\n    socket_group: \"vault\"\n\n#\n# STORAGE SETTINGS\n#\n\n# The \"storage\" stanza supports many types: https://developer.hashicorp.com/vault/docs/configuration/storage\n# Select on of the \"storage\" options by uncommenting the one you need. You can only use one of the `vault_configuration_storage_*` maps.\n\n# These are \"raft\" settings.\n# Values used below are taken from: https://developer.hashicorp.com/vault/docs/configuration/storage/raft\nvault_configuration_storage_raft:\n  path: \"/opt/vault/data\"\n  node_id: \"{{ ansible_hostname }}\"\n  performance_multiplier: 0\n  trailing_logs: 10000\n  snapshot_threshold: 8192\n  retry_join:\n    - leader_api_addr: \"https://127.0.0.1:8200\"\n      auto_join: \"\"\n      auto_join_scheme: \"https\"\n      auto_join_port: 8200\n      leader_tls_servername: \"\"\n      # You can specify a file (`leader_ca_cert_file`) OR the content of the file (`leader_ca_cert`).\n      # leader_ca_cert_file: \"/opt/vault/tls/ca.crt\"\n      leader_ca_cert: |\n        -----BEGIN CERTIFICATE-----\n        MIIDkDCCAngCCQCDSFQRyRuDWDANBgkqhkiG9w0BAQsFADCBiTELMAkGA1UEBhMC\n        TkwxEDAOBgNVBAgMB1VUUkVDSFQxEjAQBgNVBAcMCUJyZXVrZWxlbjEXMBUGA1UE\n        CgwOUm9iZXJ0IGRlIEJvY2sxGjAYBgNVBAMMEUNBIFJvYmVydCBkZSBCb2NrMR8w\n        HQYJKoZIhvcNAQkBFhByb2JlcnRAbWVpbml0Lm5sMB4XDTIzMDIxMzA4NTg1MVoX\n        DTIzMDMxNTA4NTg1MVowgYkxCzAJBgNVBAYTAk5MMRAwDgYDVQQIDAdVVFJFQ0hU\n        MRIwEAYDVQQHDAlCcmV1a2VsZW4xFzAVBgNVBAoMDlJvYmVydCBkZSBCb2NrMRow\n        GAYDVQQDDBFDQSBSb2JlcnQgZGUgQm9jazEfMB0GCSqGSIb3DQEJARYQcm9iZXJ0\n        QG1laW5pdC5ubDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALSXuMkY\n        ROOcKbZBb63oWoDE26I3MNLsCvTY7vqMAZU0Mshe7rv+TfIw8RIYV8vXS9fBo11U\n        ICG8q+q3vaDrFJR1Vfdk2GMrk/sTL+E4VzJirqLmaAAEzWAnQ+woGvYNXuGl9x3I\n        /B0CJcrRQOJi0lL7NKKQmMXwhdw/m5eZDjekfp+JyHt7vuhKlLaOcY2d6An4Pmc6\n        MxdQIFWy89HRU604uFFoExDNFZkEWr8a/bVGb8lRiG+AnxW0cuus1kgbl9/avW9d\n        kDDi7hE7FO9apr0GfF0nva6C39zaiUxG/ZB0IPWaAOsEHXhRtMUUJM6J9FT3LhPS\n        GGVV+bK5PEs/ekMCAwEAATANBgkqhkiG9w0BAQsFAAOCAQEAYJ1D2h7nEQoXC8Ka\n        w87hNP37oYDLgkXZoxNK+h5UBmYjMATGcZPbbeGsppdi3qRb3pEqNwCWlzETSJqG\n        0HzUSEeRjLp2mxLZuMHSlq+wRj2vtsN/IV5Gz/hs23LSxVXMEF7DLRSWY++sOPC9\n        /2bN3eJGhjMoDP4Pgr/h/7Kk2dqOrxR4Etgli7nxIKiUNpCAwhv+yodGz3qDBSj1\n        KWn9KbjlX/IIRakY9Gh7X+UDUWFJU30vU0so5hKKtrq0ZQoDCPhfYV9T0SLd5N3y\n        JHufLAJw5yK8WMpBOhqmnoGco48nnsRJ55qK8xeTiVGgsewhjyeHNMUP7RDDptua\n        mo3kZQ==\n        -----END CERTIFICATE-----\n      leader_client_cert_file: \"\"\n      leader_client_key_file: \"\"\n      leader_client_cert: \"\"\n      leader_client_key: \"\"\n  retry_join_as_non_voter: false\n  max_entry_size: 1048576\n  autopilot_reconcile_interval: \"10s\"\n  autopilot_update_interval: \"2s\"\n  autopilot_upgrade_version: \"\"\n  autopilot_redundancy_zone: \"\"\n\n# The Consul storage backend uses a Consul cluster to store data.\n# NOT IMPLEMENTED.\n# vault_configuration_storage_consul:\n#   address: \"127.0.0.1:8500\"\n#   check_timeout: \"5s\"\n#   consistency_mode: \"default\"\n#   disable_registration: false\n#   max_parallel: 128\n#   path: \"vault/\"\n#   scheme: \"http\"\n#   service: \"vault\"\n#   service_tags: []\n#   service_address: \"\"\n#   token: \"\"\n#   session_ttl: \"15s\"\n#   lock_wait_time: \"15s\"\n\n# The \"inmem\" (Memory) storage stanza has no parameters. Use it by setting it to 'yes'.\n# NOT IMPLEMENTED.\n# vault_configuration_storage_inmem: true\n\n#\n# (UN)SEAL SETTINGS\n#\n\n# You can configure Vault to automatically unseal. Each type has a unique set of parameters.\n# You can only use one of the `vault_configuration_seal_*` maps.\n\n# AliCloud KMS can be used to unseal Vault.\n# NOT IMPLEMENTED.\n# vault_configuration_seal_alicloudkm:\n#   region:\n#   domain:\n#   access_key:\n#   secret_key:\n#   kms_key_id:\n#   disabled: false\n\n# AWS KMS can be used to unseal Vault.\n# Values used below are taken from https://developer.hashicorp.com/vault/docs/configuration/seal/awskms\n# vault_configuration_seal_awskms:\n#   region: \"us-east-1\"\n#   access_key: \"\"\n#   session_token: \"\"\n#   secret_key: \"\"\n#   kms_key_id: \"\"\n#   disabled: false\n#   endpoint: \"\"\n\n# Azure KeyVault can be used to unseal Vault.\n# vault_configuration_seal_azurekeyvault:\n#   tenant_id: \"46646709-b63e-4747-be42-516edeaf1e14\"\n#   client_id: \"03dc33fc-16d9-4b77-8152-3ec568f8af6e\"\n#   client_secret: \"DUJDS3...\"\n#   environment: \"\"\n#   vault_name: \"hc-vault\"\n#   key_name: \"vault_key\"\n#   resource: \"\"\n#   disabled: false\n\n# Goole GCP KMS can be used to unseal Vault.\n# NOT IMPLEMENTED.\n#  vault_configuration_seal_gcpckms:\n#   credentials:\n#   project:\n#   region:\n#   key_ring:\n#   crypto_key:\n#   disabled: false\n\n# OCI KMS can be used to unseal Vault.\n# vault_configuration_seal_ocikms:\n#   key_id: \"ocid1.key.oc1.iad.afnxza26aag4s.abzwkljsbapzb2nrha5nt3s7s7p42ctcrcj72vn3kq5qx\"\n#   crypto_endpoint: \"https://afnxza26aag4s-crypto.kms.us-ashburn-1.oraclecloud.com\"\n#   management_endpoint:  \"https://afnxza26aag4s-management.kms.us-ashburn-1.oraclecloud.com\"\n#   auth_type_api_key: false\n#   disabled: false\n\n# An HSM supporting PKCS11 can be used to unseal Vault.\n# vault_configuration_seal_pkcs11:\n#   lib: \"/usr/vault/lib/libCryptoki2_64.so\"\n#   slot: \"2305843009213693953\"\n#   # token_label: \"\"\n#   pin: \"AAAA-BBBB-CCCC-DDDD\"\n#   key_label: \"vault-hsm-key\"\n#   # default_key_label: \"\"\n#   # key_id: \"\"\n#   hmac_key_label: \"vault-hsm-hmac-key\"\n#   # default_hmac_key_label: \"\"\n#   # hmac_key_id: \"\"\n#   # mechanism: \"\"\n#   # hmac_mechanism: \"\"\n#   # generate_key: \"\"\n#   # force_rw_session: \"\"\n#   disabled: false\n\n# Another Vault (with the Transit secrets engine) can be used to unseal Vault.\n# NOT IMPLEMENTED.\n# vault_configuration_seal_transit:\n#   address:\n#   token:\n#   key_name:\n#   mount_path:\n#   namespace:\n#   disable_renewal:\n#   tls_ca_cert:\n#   tls_client_cert:\n#   tls_client_key:\n#   tls_server_name:\n#   tls_skip_verify:\n#   disabled: false\n```\n\n## [Requirements](#requirements)\n\n- pip packages listed in [requirements.txt](https://github.com/robertdebock/ansible-role-vault_configuration/blob/master/requirements.txt).\n\n## [State of used roles](#state-of-used-roles)\n\nThe following roles are used to prepare a system. You can prepare your system in another way.\n\n| Requirement | GitHub | GitLab |\n|-------------|--------|--------|\n|[robertdebock.bootstrap](https://galaxy.ansible.com/robertdebock/bootstrap)|[![Build Status GitHub](https://github.com/robertdebock/ansible-role-bootstrap/workflows/Ansible%20Molecule/badge.svg)](https://github.com/robertdebock/ansible-role-bootstrap/actions)|[![Build Status GitLab](https://gitlab.com/robertdebock-iac/ansible-role-bootstrap/badges/master/pipeline.svg)](https://gitlab.com/robertdebock-iac/ansible-role-bootstrap)|\n|[robertdebock.core_dependencies](https://galaxy.ansible.com/robertdebock/core_dependencies)|[![Build Status GitHub](https://github.com/robertdebock/ansible-role-core_dependencies/workflows/Ansible%20Molecule/badge.svg)](https://github.com/robertdebock/ansible-role-core_dependencies/actions)|[![Build Status GitLab](https://gitlab.com/robertdebock-iac/ansible-role-core_dependencies/badges/master/pipeline.svg)](https://gitlab.com/robertdebock-iac/ansible-role-core_dependencies)|\n|[robertdebock.hashicorp](https://galaxy.ansible.com/robertdebock/hashicorp)|[![Build Status GitHub](https://github.com/robertdebock/ansible-role-hashicorp/workflows/Ansible%20Molecule/badge.svg)](https://github.com/robertdebock/ansible-role-hashicorp/actions)|[![Build Status GitLab](https://gitlab.com/robertdebock-iac/ansible-role-hashicorp/badges/master/pipeline.svg)](https://gitlab.com/robertdebock-iac/ansible-role-hashicorp)|\n|[robertdebock.vault](https://galaxy.ansible.com/robertdebock/vault)|[![Build Status GitHub](https://github.com/robertdebock/ansible-role-vault/workflows/Ansible%20Molecule/badge.svg)](https://github.com/robertdebock/ansible-role-vault/actions)|[![Build Status GitLab](https://gitlab.com/robertdebock-iac/ansible-role-vault/badges/master/pipeline.svg)](https://gitlab.com/robertdebock-iac/ansible-role-vault)|\n\n## [Context](#context)\n\nThis role is a part of many compatible roles. Have a look at [the documentation of these roles](https://robertdebock.nl/) for further information.\n\nHere is an overview of related roles:\n![dependencies](https://raw.githubusercontent.com/robertdebock/ansible-role-vault_configuration/png/requirements.png \"Dependencies\")\n\n## [Compatibility](#compatibility)\n\nThis role has been tested on these [container images](https://hub.docker.com/u/robertdebock):\n\n|container|tags|\n|---------|----|\n|[Amazon](https://hub.docker.com/r/robertdebock/amazonlinux)|Candidate|\n|[Debian](https://hub.docker.com/r/robertdebock/debian)|all|\n|[EL](https://hub.docker.com/r/robertdebock/enterpriselinux)|9|\n|[Fedora](https://hub.docker.com/r/robertdebock/fedora)|39, 40|\n|[Ubuntu](https://hub.docker.com/r/robertdebock/ubuntu)|all|\n\nThe minimum version of Ansible required is 2.12, tests have been done to:\n\n- The previous version.\n- The current version.\n- The development version.\n\nIf you find issues, please register them in [GitHub](https://github.com/robertdebock/ansible-role-vault_configuration/issues).\n\n## [License](#license)\n\n[Apache-2.0](https://github.com/robertdebock/ansible-role-vault_configuration/blob/master/LICENSE).\n\n## [Author Information](#author-information)\n\n[robertdebock](https://robertdebock.nl/)\n\nPlease consider [sponsoring me](https://github.com/sponsors/robertdebock).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frobertdebock%2Fansible-role-vault_configuration","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frobertdebock%2Fansible-role-vault_configuration","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frobertdebock%2Fansible-role-vault_configuration/lists"}