Diferències
Ací es mostren les diferències entre la revisió seleccionada i la versió actual de la pàgina.
| Ambdós costats versió prèvia Revisió prèvia Següent revisió | Revisió prèvia | ||
| tech:terraform:start [25/03/2020 02:44] – [0.11] mate | tech:terraform:start [10/06/2025 06:51] (actual) – [documentación] mate | ||
|---|---|---|---|
| Línia 1: | Línia 1: | ||
| - | = Terraform | + | = TERRAFORM |
| {{tag> devops info}} | {{tag> devops info}} | ||
| * [[tech: | * [[tech: | ||
| * [[tech: | * [[tech: | ||
| - | |||
| - | == cli | ||
| - | === básicos | ||
| - | * **init** : Initialize a new or existing Terraform configuration | ||
| - | * **validate** : Validates the Terraform files | ||
| - | * **plan** : Generate and show an execution plan | ||
| - | * **fmt** : Rewrites config files to canonical format | ||
| - | * **apply** : Builds or changes infrastructure | ||
| - | * **graph** : Create a visual graph of Terraform resources | ||
| - | * **output** : Read an output from a state file | ||
| - | * **destroy** : Destroy Terraform-managed infrastructure | ||
| - | |||
| - | === otros | ||
| - | * **refresh** : Update local state file against real resources | ||
| - | * **show** : Inspect Terraform state or plan | ||
| - | * **taint** : Manually mark a resource for recreation | ||
| - | * **untaint** : Manually unmark a resource as tainted | ||
| - | * **debug** : Debug output management (experimental) | ||
| - | * **force-unlock** : Manually unlock the terraform state | ||
| - | * **state** : Advanced state management | ||
| - | |||
| - | === autocomplete | ||
| - | * '' | ||
| - | * '' | ||
| == documentación | == documentación | ||
| + | * [[tech: | ||
| * [[tech: | * [[tech: | ||
| + | * [[tech: | ||
| + | * [[tech: | ||
| + | * [[tech: | ||
| * [[tech: | * [[tech: | ||
| + | ===PoC | ||
| + | * [[tech: | ||
| + | |||
| + | === related | ||
| + | {{topic> | ||
| + | {{topic> | ||
| === enlaces documentación | === enlaces documentación | ||
| * 0.12: [[https:// | * 0.12: [[https:// | ||
| Línia 76: | Línia 62: | ||
| </ | </ | ||
| + | === dynamic | ||
| + | <code properties> | ||
| + | |||
| + | variable " | ||
| + | type = list(map(string)) | ||
| + | default = [ | ||
| + | { id = " | ||
| + | ] | ||
| + | } | ||
| + | | ||
| + | } | ||
| + | resource " | ||
| + | |||
| + | dynamic " | ||
| + | for_each = var.virtual_network_rule_ids | ||
| + | |||
| + | content { | ||
| + | id = virtual_network_rule.value[" | ||
| + | } | ||
| + | } | ||
| + | } | ||
| + | </ | ||
| === casos de uso | === casos de uso | ||
| * [[tech: | * [[tech: | ||