Terraform module to generate dynamic inventory from SSH/WinRM connections and run ansible-playbook over that
This modules needs Ansible to be installed on local
Add the required configurations to your terraform config file and install module using command bellow:
terraform init
module "ansible" {
source = "cktf/ansible/module"
groups = {
all = {
vars = {
myKey = "myValue"
}
}
}
hosts = {
server-1 = {
groups = ["all"]
connection = {
host = "192.168.1.10"
user = "root"
private_key = "<REDACTED>"
}
}
server-2 = {
groups = ["all"]
connection = {
host = "192.168.1.11"
user = "root"
private_key = "<REDACTED>"
}
}
server-3 = {
groups = ["all"]
connection = {
host = "192.168.1.12"
user = "root"
private_key = "<REDACTED>"
}
}
}
create_playbook = "create.yml"
create_extra_args = "-vvv"
}
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.
This project is licensed under the MIT.
Copyright (c) KoLiBer (koliberr136a1@gmail.com)