You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6Lines changed: 6 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1697,14 +1697,20 @@ List
1697
1697
1698
1698
<details>
1699
1699
<summary>Explain "Remote State". When would you use it and how?</summary><br><b>
1700
+
Terraform generates a `terraform.tfstate` json file that describes components/service provisioned on the specified provider. Remote
1701
+
State stores this file in a remote storage media to enable collaboration amongst team.
1700
1702
</b></details>
1701
1703
1702
1704
<details>
1703
1705
<summary>Explain "State Locking"</summary><br><b>
1706
+
State locking is a mechanism that blocks an operations against a specific state file from multiple callers so as to avoid conflicting operations from different team members. Once the first caller's operation's lock is released the other team member may go ahead to
1707
+
carryout his own operation. Nevertheless Terraform will first check the state file to see if the desired resource already exist and
1708
+
if not it goes ahead to create it.
1704
1709
</b></details>
1705
1710
1706
1711
<details>
1707
1712
<summary>What is the "Random" provider? What is it used for</summary><br><b>
1713
+
The random provider aids in generating numeric or alphabetic characters to use as a prefix or suffix for a desired named identifier.
0 commit comments