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
resource "juju_application" "my-application" {
#
config = {
# Reference my-secret within the plan by using the secret_id
secret = juju_secret.my-secret.secret_id
}
#
}
refers to the secret like so: secret = juju_secret.my-secret.secret_id
This doesn't work since Juju secrets require secret: prefix.
The workaround is to set it as `secret = "secret:${juju_secret.my-secret.secret_id}".
Urgency
Annoying bug in our test suite
Terraform Juju Provider version
0.15.1
Terraform version
v1.7.2
Juju version
3.6
Terraform Configuration(s)
No response
Reproduce / Test
-
Debug/Panic Output
No response
Notes & References
No response
The text was updated successfully, but these errors were encountered:
Description
The terraform provider documentation
refers to the secret like so:
secret = juju_secret.my-secret.secret_id
This doesn't work since Juju secrets require
secret:
prefix.The workaround is to set it as `secret = "secret:${juju_secret.my-secret.secret_id}".
Urgency
Annoying bug in our test suite
Terraform Juju Provider version
0.15.1
Terraform version
v1.7.2
Juju version
3.6
Terraform Configuration(s)
No response
Reproduce / Test
Debug/Panic Output
No response
Notes & References
No response
The text was updated successfully, but these errors were encountered: