Which argument helps prevent unexpected updates when calling Terraform Registry modules?
Which argument helps prevent unexpected updates when calling Terraform Registry modules?
The version argument helps prevent unexpected updates when calling Terraform Registry modules. It allows you to specify the exact version of the module you want to use, ensuring that your configuration consistently utilizes the same version until you explicitly choose to update it. This practice helps maintain stability and predictability in your infrastructure by avoiding unintentional changes from automatic module updates.
C. version The version argument helps prevent unexpected updates when calling Terraform Registry modules. It allows you to specify the exact version of the module you want to use. This ensures that your configuration consistently uses the same version of the module until you explicitly decide to update it to a newer version. Using the version argument is a good practice to ensure that your infrastructure remains stable and predictable, as it prevents unintentional changes caused by automatic module updates.
version is correct
agree Pete987