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 01:04] – [enlaces documentación] mate | tech:terraform:start [15/05/2020 03:19] (actual) – [related] 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: | ||
+ | ===PoC | ||
+ | * [[tech: | ||
+ | |||
+ | === related | ||
+ | {{topic> | ||
+ | {{topic> | ||
=== enlaces documentación | === enlaces documentación | ||
- | === 0.11 | + | * 0.12: [[https:// |
- | * [[https:// | + | * 0.11: [[https:// |
- | * | + | |
== de interés | == de interés | ||
Línia 76: | Línia 61: | ||
</ | </ | ||
+ | === 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: |