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
{{ message }}
This repository has been archived by the owner on Feb 5, 2020. It is now read-only.
Whenever I plan within Terraform, it always tells me it is going to
Plan: 2 to add, 0 to change, 2 to destroy.
Even if it is immediately after an apply (without changing any resource)
The resources are
module.bootstrapper.null_resource.bootstrapper (new resource required), and module.tectonic.template_dir.tectonic
The text was updated successfully, but these errors were encountered:
@geek876 I can confirm that the module.tectonic.template_dir.tectonic will always be recreated (platform/aws& tectonic_1.8.7-tectonic.1). It's because inside it is the admin_password_hash saved which is correctly hashed with bcrypt(). As this salts the hash, it will return a new value on every run.
I can't say anything about the module.bootstrapper.null_resource.bootstrapper as this is only used in platform/azure.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Whenever I plan within Terraform, it always tells me it is going to
Plan: 2 to add, 0 to change, 2 to destroy.
Even if it is immediately after an apply (without changing any resource)
The resources are
module.bootstrapper.null_resource.bootstrapper (new resource required), and module.tectonic.template_dir.tectonic
The text was updated successfully, but these errors were encountered: