├── .gitignore ├── README.md ├── docs ├── terrasalt.png └── terrasalt.vsdx ├── license.md ├── requirements.txt └── terraform ├── aws_example ├── aws.tf ├── aws_env_var_example.md ├── aws_example_variables.tf ├── aws_module │ ├── aws_module_variables.tf │ └── main.tf └── terraform.tfvars ├── azure_example ├── azure.tf ├── azure_env_var_example.md ├── azure_example_variables.tf ├── azure_module │ ├── azure_module_variables.tf │ └── main.tf └── terraform.tfvars ├── digitalocean_example ├── do.tf ├── do_env_var_example.md ├── do_example_variables.tf ├── do_module │ ├── do_module_variables.tf │ └── main.tf └── terraform.tfvars ├── gcp_example ├── gcp.tf ├── gcp_env_var_example.md ├── gcp_example_variables.tf ├── gcp_module │ ├── gcp_module_variables.tf │ └── main.tf └── terraform.tfvars └── modules └── tf_mod_salt ├── README.md ├── files ├── httpsrequests.py └── installsaltminion.sh ├── main.tf └── salt_variables.tf /.gitignore: -------------------------------------------------------------------------------- 1 | .terraform 2 | *.tfstate* 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbitbus/terrasalt/HEAD/README.md -------------------------------------------------------------------------------- /docs/terrasalt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbitbus/terrasalt/HEAD/docs/terrasalt.png -------------------------------------------------------------------------------- /docs/terrasalt.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbitbus/terrasalt/HEAD/docs/terrasalt.vsdx -------------------------------------------------------------------------------- /license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbitbus/terrasalt/HEAD/license.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbitbus/terrasalt/HEAD/requirements.txt -------------------------------------------------------------------------------- /terraform/aws_example/aws.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbitbus/terrasalt/HEAD/terraform/aws_example/aws.tf -------------------------------------------------------------------------------- /terraform/aws_example/aws_env_var_example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbitbus/terrasalt/HEAD/terraform/aws_example/aws_env_var_example.md -------------------------------------------------------------------------------- /terraform/aws_example/aws_example_variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbitbus/terrasalt/HEAD/terraform/aws_example/aws_example_variables.tf -------------------------------------------------------------------------------- /terraform/aws_example/aws_module/aws_module_variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbitbus/terrasalt/HEAD/terraform/aws_example/aws_module/aws_module_variables.tf -------------------------------------------------------------------------------- /terraform/aws_example/aws_module/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbitbus/terrasalt/HEAD/terraform/aws_example/aws_module/main.tf -------------------------------------------------------------------------------- /terraform/aws_example/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbitbus/terrasalt/HEAD/terraform/aws_example/terraform.tfvars -------------------------------------------------------------------------------- /terraform/azure_example/azure.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbitbus/terrasalt/HEAD/terraform/azure_example/azure.tf -------------------------------------------------------------------------------- /terraform/azure_example/azure_env_var_example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbitbus/terrasalt/HEAD/terraform/azure_example/azure_env_var_example.md -------------------------------------------------------------------------------- /terraform/azure_example/azure_example_variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbitbus/terrasalt/HEAD/terraform/azure_example/azure_example_variables.tf -------------------------------------------------------------------------------- /terraform/azure_example/azure_module/azure_module_variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbitbus/terrasalt/HEAD/terraform/azure_example/azure_module/azure_module_variables.tf -------------------------------------------------------------------------------- /terraform/azure_example/azure_module/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbitbus/terrasalt/HEAD/terraform/azure_example/azure_module/main.tf -------------------------------------------------------------------------------- /terraform/azure_example/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbitbus/terrasalt/HEAD/terraform/azure_example/terraform.tfvars -------------------------------------------------------------------------------- /terraform/digitalocean_example/do.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbitbus/terrasalt/HEAD/terraform/digitalocean_example/do.tf -------------------------------------------------------------------------------- /terraform/digitalocean_example/do_env_var_example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbitbus/terrasalt/HEAD/terraform/digitalocean_example/do_env_var_example.md -------------------------------------------------------------------------------- /terraform/digitalocean_example/do_example_variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbitbus/terrasalt/HEAD/terraform/digitalocean_example/do_example_variables.tf -------------------------------------------------------------------------------- /terraform/digitalocean_example/do_module/do_module_variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbitbus/terrasalt/HEAD/terraform/digitalocean_example/do_module/do_module_variables.tf -------------------------------------------------------------------------------- /terraform/digitalocean_example/do_module/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbitbus/terrasalt/HEAD/terraform/digitalocean_example/do_module/main.tf -------------------------------------------------------------------------------- /terraform/digitalocean_example/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbitbus/terrasalt/HEAD/terraform/digitalocean_example/terraform.tfvars -------------------------------------------------------------------------------- /terraform/gcp_example/gcp.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbitbus/terrasalt/HEAD/terraform/gcp_example/gcp.tf -------------------------------------------------------------------------------- /terraform/gcp_example/gcp_env_var_example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbitbus/terrasalt/HEAD/terraform/gcp_example/gcp_env_var_example.md -------------------------------------------------------------------------------- /terraform/gcp_example/gcp_example_variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbitbus/terrasalt/HEAD/terraform/gcp_example/gcp_example_variables.tf -------------------------------------------------------------------------------- /terraform/gcp_example/gcp_module/gcp_module_variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbitbus/terrasalt/HEAD/terraform/gcp_example/gcp_module/gcp_module_variables.tf -------------------------------------------------------------------------------- /terraform/gcp_example/gcp_module/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbitbus/terrasalt/HEAD/terraform/gcp_example/gcp_module/main.tf -------------------------------------------------------------------------------- /terraform/gcp_example/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbitbus/terrasalt/HEAD/terraform/gcp_example/terraform.tfvars -------------------------------------------------------------------------------- /terraform/modules/tf_mod_salt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbitbus/terrasalt/HEAD/terraform/modules/tf_mod_salt/README.md -------------------------------------------------------------------------------- /terraform/modules/tf_mod_salt/files/httpsrequests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbitbus/terrasalt/HEAD/terraform/modules/tf_mod_salt/files/httpsrequests.py -------------------------------------------------------------------------------- /terraform/modules/tf_mod_salt/files/installsaltminion.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbitbus/terrasalt/HEAD/terraform/modules/tf_mod_salt/files/installsaltminion.sh -------------------------------------------------------------------------------- /terraform/modules/tf_mod_salt/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbitbus/terrasalt/HEAD/terraform/modules/tf_mod_salt/main.tf -------------------------------------------------------------------------------- /terraform/modules/tf_mod_salt/salt_variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbitbus/terrasalt/HEAD/terraform/modules/tf_mod_salt/salt_variables.tf --------------------------------------------------------------------------------