Skip to content

Commit

Permalink
GitBook: [#28] No subject
Browse files Browse the repository at this point in the history
  • Loading branch information
LygutaKsusha authored and gitbook-bot committed Feb 12, 2022
1 parent e982626 commit 473a3a3
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@
* [Code styling](code-styling.md)
* [FAQ](faq.md)
* [Посилання](references.md)
* [Writing Terraform configurations](writing-terraform-configurations.md)
* [Написання конфігурацій Terraform](writing-terraform-configurations.md)
* [Workshop](workshop.md)
12 changes: 6 additions & 6 deletions writing-terraform-configurations.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
# Writing Terraform configurations
# Написання конфігурацій Terraform

## Use `locals` to specify explicit dependencies between resources
## Використовуйте `locals` щоб вказати явні залежності між ресурсами

Helpful way to give a hint to Terraform that some resources should be deleted before even when there is no direct dependency in Terraform configurations.
Корисний спосіб дати підказку Terraform про те, що деякі ресурси слід видалити раніше, навіть якщо немає прямої залежності в конфігураціях Terraform.

[https://raw.githubusercontent.com/antonbabenko/terraform-best-practices/master/snippets/locals.tf](https://raw.githubusercontent.com/antonbabenko/terraform-best-practices/master/snippets/locals.tf)

## Terraform 0.12 - Required vs Optional arguments
## Terraform 0.12 - Обов’язкові та необов’язкові аргументи

1. Required argument `index_document` must be set, if `var.website` is not an empty map.
2. Optional argument `error_document` can be omitted.
1. Обов'язковий аргумент `index_document`необхідно встановити, якщо `var.website -` це не порожній map
2. Необов'язковий аргумент`error_document` можна пропустити.

{% code title="main.tf" %}
```hcl
Expand Down

0 comments on commit 473a3a3

Please sign in to comment.