Advertisement
Guest User

Untitled

a guest
Jul 6th, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.76 KB | None | 0 0
  1. terraform plan
  2. Refreshing Terraform state in-memory prior to plan...
  3. The refreshed state will be used to calculate this plan, but will not be
  4. persisted to local or remote state storage.
  5.  
  6. data.vault_generic_secret.dyn_user: Refreshing state...
  7. data.vault_generic_secret.dyn_pass: Refreshing state...
  8. The Terraform execution plan has been generated and is shown below.
  9. Resources are shown in alphabetical order for quick scanning. Green resources
  10. will be created (or destroyed and then created if an existing resource
  11. exists), yellow resources are being changed in-place, and red resources
  12. will be destroyed. Cyan entries are data sources to be read.
  13.  
  14. Note: You didn't specify an "-out" parameter to save this plan, so when
  15. "apply" is called, Terraform can't guarantee this is what will execute.
  16.  
  17. + module.DNS1.dyn_record.record
  18. fqdn: "<computed>"
  19. name: "test11778"
  20. ttl: "3600"
  21. type: "A"
  22. value: "10.10.10.34"
  23. zone: "liortest.com"
  24.  
  25.  
  26. Plan: 1 to add, 0 to change, 0 to destroy.
  27. liorc@liorc-e7450:~/terraform/terraform/states/ks-list/ks8050/dns$ terraform plan
  28. Failed to load root config module: Error loading modules: module DNS1: not found, may need to be downloaded using 'terraform get'
  29. liorc@liorc-e7450:~/terraform/terraform/states/ks-list/ks8050/dns$ terraform get
  30. Get: file:///home/liorc/terraform/terraform/modules/kenshoo/dns/ext_dns/dyn
  31. liorc@liorc-e7450:~/terraform/terraform/states/ks-list/ks8050/dns$ terraform plan
  32. Refreshing Terraform state in-memory prior to plan...
  33. The refreshed state will be used to calculate this plan, but will not be
  34. persisted to local or remote state storage.
  35.  
  36. data.vault_generic_secret.dyn_pass: Refreshing state...
  37. data.vault_generic_secret.dyn_user: Refreshing state...
  38. The Terraform execution plan has been generated and is shown below.
  39. Resources are shown in alphabetical order for quick scanning. Green resources
  40. will be created (or destroyed and then created if an existing resource
  41. exists), yellow resources are being changed in-place, and red resources
  42. will be destroyed. Cyan entries are data sources to be read.
  43.  
  44. Note: You didn't specify an "-out" parameter to save this plan, so when
  45. "apply" is called, Terraform can't guarantee this is what will execute.
  46.  
  47. + module.DNS1.dyn_record.record
  48. fqdn: "<computed>"
  49. name: "test11778"
  50. ttl: "3600"
  51. type: "A"
  52. value: "10.10.10.34"
  53. zone: "liortest.com"
  54.  
  55.  
  56. Plan: 1 to add, 0 to change, 0 to destroy.
  57. liorc@liorc-e7450:~/terraform/terraform/states/ks-list/ks8050/dns$ terraform apply
  58. data.vault_generic_secret.dyn_user: Refreshing state...
  59. data.vault_generic_secret.dyn_pass: Refreshing state...
  60. module.DNS1.dyn_record.record: Creating...
  61. fqdn: "" => "<computed>"
  62. name: "" => "test11778"
  63. ttl: "" => "3600"
  64. type: "" => "A"
  65. value: "" => "10.10.10.34"
  66. zone: "" => "liortest.com"
  67. module.DNS1.dyn_record.record: Creation complete (ID: 282231096)
  68.  
  69. Apply complete! Resources: 1 added, 0 changed, 0 destroyed.
  70.  
  71. The state of your infrastructure has been saved to the path
  72. below. This state is required to modify and destroy your
  73. infrastructure, so keep it safe. To inspect the complete state
  74. use the `terraform show` command.
  75.  
  76. State path:
  77. liorc@liorc-e7450:~/terraform/terraform/states/ks-list/ks8050/dns$ terraform plan
  78. Failed to load root config module: Error loading modules: module DNS2: not found, may need to be downloaded using 'terraform get'
  79. liorc@liorc-e7450:~/terraform/terraform/states/ks-list/ks8050/dns$ terraform get
  80. Get: file:///home/liorc/terraform/terraform/modules/kenshoo/dns/ext_dns/dyn
  81. Get: file:///home/liorc/terraform/terraform/modules/kenshoo/dns/ext_dns/dyn
  82. liorc@liorc-e7450:~/terraform/terraform/states/ks-list/ks8050/dns$ terraform plan
  83. Refreshing Terraform state in-memory prior to plan...
  84. The refreshed state will be used to calculate this plan, but will not be
  85. persisted to local or remote state storage.
  86.  
  87. data.vault_generic_secret.dyn_pass: Refreshing state...
  88. data.vault_generic_secret.dyn_user: Refreshing state...
  89. data.vault_generic_secret.dyn_pass: Refreshing state...
  90. data.vault_generic_secret.dyn_user: Refreshing state...
  91. dyn_record.record: Refreshing state... (ID: 282231096)
  92. The Terraform execution plan has been generated and is shown below.
  93. Resources are shown in alphabetical order for quick scanning. Green resources
  94. will be created (or destroyed and then created if an existing resource
  95. exists), yellow resources are being changed in-place, and red resources
  96. will be destroyed. Cyan entries are data sources to be read.
  97.  
  98. Note: You didn't specify an "-out" parameter to save this plan, so when
  99. "apply" is called, Terraform can't guarantee this is what will execute.
  100.  
  101. + module.DNS2.dyn_record.record
  102. fqdn: "<computed>"
  103. name: "test11778"
  104. ttl: "3600"
  105. type: "A"
  106. value: "10.10.10.34"
  107. zone: "liortest.com"
  108.  
  109.  
  110. Plan: 2 to add, 0 to change, 0 to destroy.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement