├── .gitignore ├── LICENSE ├── README.md └── tf-ansible-stack-dependencies ├── ansible ├── install_htop.yaml └── install_nginx.yaml └── tf ├── main.tf ├── outputs.tf └── variables.tf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/spacelift-demo/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/spacelift-demo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/spacelift-demo/HEAD/README.md -------------------------------------------------------------------------------- /tf-ansible-stack-dependencies/ansible/install_htop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/spacelift-demo/HEAD/tf-ansible-stack-dependencies/ansible/install_htop.yaml -------------------------------------------------------------------------------- /tf-ansible-stack-dependencies/ansible/install_nginx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/spacelift-demo/HEAD/tf-ansible-stack-dependencies/ansible/install_nginx.yaml -------------------------------------------------------------------------------- /tf-ansible-stack-dependencies/tf/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/spacelift-demo/HEAD/tf-ansible-stack-dependencies/tf/main.tf -------------------------------------------------------------------------------- /tf-ansible-stack-dependencies/tf/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/spacelift-demo/HEAD/tf-ansible-stack-dependencies/tf/outputs.tf -------------------------------------------------------------------------------- /tf-ansible-stack-dependencies/tf/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iam-veeramalla/spacelift-demo/HEAD/tf-ansible-stack-dependencies/tf/variables.tf --------------------------------------------------------------------------------