Questions
- Why should we constrain the provider version?
- You should always use the
fmtandvalidatefunctions before a Terraform plan. (True/False) - What does the Terraform
plancommand do? (Choose two)A. Refreshes the current state with the existing infrastructure state
B. Gets the delta between the current configuration and the expected configuration
C. Applies the configuration to the cloud
D. Destroys the configuration in the cloud
- What does the
terraform applycommand do? (Choose three)A. Refreshes the current state with the existing infrastructure
B. Gets the delta between the current configuration and the expected configuration
C. Applies the configuration to the cloud
D. Destroys the configuration in the cloud
- Why should you never store state files in source control? (Choose two)
A. State files are plaintext, and therefore you expose sensitive information to unprivileged users.
B. Source control does not support state locking, and therefore it might result in potential...