Last active
August 29, 2015 14:04
-
-
Save fishnix/fdc1511fc5578d8feb33 to your computer and use it in GitHub Desktop.
terraform.tfvars
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
secret_key = "some secret key" | |
access_key = 'some access key' | |
or | |
access_key = "some access key" | |
secret_key = 'some secret key' | |
or | |
access_key = 'some access key' | |
secret_key = 'some secret key' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19:25 ~/tmp/terraform/example $ terraform plan | |
Usage: terraform plan [options] [dir] | |
Generates an execution plan for Terraform. | |
This execution plan can be reviewed prior to running apply to get a | |
sense for what Terraform will do. Optionally, the plan can be saved to | |
a Terraform plan file, and apply can take this plan file to execute | |
this plan exactly. | |
Options: | |
-backup=path Path to backup the existing state file before | |
modifying. Defaults to the "-state-out" path with | |
".backup" extention. Set to "-" to disable backup. | |
-destroy If set, a plan will be generated to destroy all resources | |
managed by the given configuration and state. | |
-no-color If specified, output won't contain any color. | |
-out=path Write a plan file to the given path. This can be used as | |
input to the "apply" command. | |
-refresh=true Update state prior to checking for differences. | |
-state=statefile Path to a Terraform state file to use to look | |
up Terraform-managed resources. By default it will | |
use the state "terraform.tfstate" if it exists. | |
-var 'foo=bar' Set a variable in the Terraform configuration. This | |
flag can be set multiple times. | |
-var-file=foo Set variables in the Terraform configuration from | |
a file. If "terraform.tfvars" is present, it will be | |
automatically loaded if this flag is not specified. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
access_key = 'some access key' | |
secret_key = "some secret key" | |
or | |
secret_key = 'some secret key' | |
access_key = "some access key" | |
or | |
secret_key = "some secret key" | |
access_key = "some access key" |
Hi @skytol - Sorry I missed this. They should still be available: https://github.com/fishnix/vagrant-projects-yu
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi
Are you no longer allowing to download vagrant boxes from your
vagrant-projects-yu project?
Regards
Tony