We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Terraform v1.7.5 on linux_amd64
import { to = random_password.mypassword id = "Mysecurepassword3%" } resource "random_password" "mypassword" { length = 30 lower = true special = true upper = true lifecycle { ignore_changes = [length] } }
random_password.mypassword: Importing... [id=none] random_password.mypassword: Import complete [id=none]
random_password.mypassword: Importing... [id=Mysecurepassword3%] random_password.mypassword: Import complete [id=Mysecurepassword3%]
terraform apply
Medium
No response
Using terraform console :
> random_password.mypassword.id "none"
Use sensitive does not help:
id = sensitive("Mysecurepassword3%")
The text was updated successfully, but these errors were encountered:
Anything related to the random_password could use better obfuscation - related #82
Sorry, something went wrong.
No branches or pull requests
Terraform CLI and Provider Versions
Terraform v1.7.5
on linux_amd64
Terraform Configuration
Expected Behavior
random_password.mypassword: Importing... [id=none]
random_password.mypassword: Import complete [id=none]
Actual Behavior
random_password.mypassword: Importing... [id=Mysecurepassword3%]
random_password.mypassword: Import complete [id=Mysecurepassword3%]
Steps to Reproduce
terraform apply
How much impact is this issue causing?
Medium
Logs
No response
Additional Information
Using terraform console :
Use sensitive does not help:
Code of Conduct
The text was updated successfully, but these errors were encountered: