Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

terraform.adoc 583B

12345678910111213141516
  1. +++
  2. +++
  3. == Terraform
  4. https://www.terraform.io/[Terraform] by HashiCorp is a tool to provision and modify
  5. infrastructure via declarative config files.
  6. === Notes
  7. * An `azurerm_virtual_machine` can't be recreated out-of-the-box as the OS disk
  8. will still exist. The option `delete_os_disk_on_termination` will delete the
  9. disk when the machine terminates, which keeps everything happy.
  10. * After adding new providers you need to re-run `terraform init` to install them.
  11. * To force recreation of a resource you can taint it, e.g.
  12. `terraform taint azurerm_virtual_machine.mymachine`