diff --git a/.mise.toml b/.mise.toml index ba7833e..e849db3 100644 --- a/.mise.toml +++ b/.mise.toml @@ -1,3 +1,3 @@ [env] -ANSIBLE_INVENTORY = "{{config_root}}/inventory.ini" +ANSIBLE_INVENTORY = "{{config_root}}/inventory.yaml" ANSIBLE_VAULT_PASSWORD_FILE = "{{config_root}}/vault.pass" diff --git a/inventory.ini b/inventory.ini deleted file mode 100644 index 8b97f26..0000000 --- a/inventory.ini +++ /dev/null @@ -1,2 +0,0 @@ -[servers] -ubuntu ansible_host=192.168.0.6 ansible_python_interpreter=auto_silent diff --git a/inventory.yaml b/inventory.yaml new file mode 100644 index 0000000..518fba8 --- /dev/null +++ b/inventory.yaml @@ -0,0 +1,6 @@ +--- +servers: + hosts: + ubuntu: + ansible_host: 192.168.0.6 + ansible_python_interpreter: auto_silent