Skip to content

Instantly share code, notes, and snippets.

@pgporada
Created August 3, 2017 01:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pgporada/cbf8bab9411c3612fe273fdde2e9206f to your computer and use it in GitHub Desktop.
Save pgporada/cbf8bab9411c3612fe273fdde2e9206f to your computer and use it in GitHub Desktop.
[user@work packet]$ terraform plan -var-file environments/test/test.tfvars
packet_project.phil: Refreshing state... (ID: 1a7e5ef9-758e-4c84-bf84-27d8cdd1bf8c)
The Terraform execution plan has been generated and is shown below.
Resources are shown in alphabetical order for quick scanning. Green resources
will be created (or destroyed and then created if an existing resource
exists), yellow resources are being changed in-place, and red resources
will be destroyed. Cyan entries are data sources to be read.
Note: You didn't specify an "-out" parameter to save this plan, so when
"apply" is called, Terraform can't guarantee this is what will execute.
+ module.packet_server.packet_ssh_key.key_phil
created: "<computed>"
fingerprint: "<computed>"
name: "pgporada"
public_key: "ssh-ed25519 AsdfdsfdsfdsfDI1dsfdsfdsfdsdfsdfsdfdsfdsfdZdOX5f3sdfsdfsdfdsO7 thatsme\n"
updated: "<computed>"
Plan: 2 to add, 0 to change, 0 to destroy.
[user@work packet]$ terraform apply -var-file environments/test/test.tfvars
packet_project.phil: Refreshing state... (ID: 1a7e5ef9-758e-4c84-bf84-27d8cdd1bf8c)
module.packet_server.packet_ssh_key.key_phil: Creating...
created: "" => "<computed>"
fingerprint: "" => "<computed>"
name: "" => "pgporada"
public_key: "" => "ssh-ed25519 AsdfdsfdsfdsfDI1dsfdsfdsfdsdfsdfsdfdsfdsfdZdOX5f3sdfsdfsdfdsO7 thatsme\n"
updated: "" => "<computed>"
module.packet_server.packet_ssh_key.key_phil: Creation complete (ID: 19bcc542-e665-4993-a49e-d241713d468d)
Apply complete! Resources: 1 added, 0 changed, 0 destroyed.
The state of your infrastructure has been saved to the path
below. This state is required to modify and destroy your
infrastructure, so keep it safe. To inspect the complete state
use the `terraform show` command.
State path:
Outputs:
key_phil_created = 2017-08-03T01:43:22Z
key_phil_fingerprint = ce:fe:8e:f6:d9:0e:bd:bb:6a:60:9a:16:b9:42:88:21
key_phil_id = 19bcc542-e665-4993-a49e-d241713d468d
key_phil_name = pgporada
key_phil_public_key = ssh-ed25519 AsdfdsfdsfdsfDI1dsfdsfdsfdsdfsdfsdfdsfdsfdZdOX5f3sdfsdfsdfdsO7 thatsme
key_phil_updated = 2017-08-03T01:43:22Z
project_created = 2017-08-03T01:17:54Z
project_id = 1a7e5ef9-758e-4c84-bf84-27d8cdd1bf8c
project_name = Phil builds the things
project_updated = 2017-08-03T01:17:54Z
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment