1
1
Fork 0
mirror of https://github.com/adammck/terraform-inventory synced 2024-05-24 17:16:15 +02:00

Clarify usage in README

This commit is contained in:
Adam Mckaig 2014-09-24 18:54:39 -04:00
parent 2938602cae
commit 9f33a7ec91

View File

@ -9,19 +9,20 @@ Terraform, then (re-)provision them with Ansible. It's pretty neat.
Just download the OSX binary and run it.
curl -L -O https://github.com/adammck/terraform-inventory/releases/download/v0.2/terraform-inventory
chmod u+x terraform-inventory
./terraform-inventory --list whatever.tfstate
curl -L -O https://github.com/adammck/terraform-inventory/releases/download/v0.2/terraform-inventory
chmod u+x terraform-inventory
./terraform-inventory --list whatever.tfstate
Ansible doesn't (seem to) support calling the inventory script with parameters,
so I like to wrap this tool up in a little shell script, and call that.
Something like:
Ansible doesn't (seem to) support calling the inventory script with parameters
(and this tool doesn't support configuration via environment variables yet), so
I like to create a little shell script and call that. Something like:
#!/bin/bash
terraform-inventory $@ $(dirname $0)/deploy/terraform.tfstate
terraform-inventory $@ deploy/terraform.tfstate
Configuration via environment variables, like most other dynamic inventory
scripts, is coming soon.
Then run Ansible with the script as an inventory:
ansible-playbook --inventory-file=bin/inventory deploy/playbook.yml
## Development