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 import
$ terraform -v Terraform v1.3.0 on linux_amd64 + provider registry.terraform.io/juju/juju v0.4.1
juju_application
resource "juju_application" "indico" { name = "indico" model = juju_model.staging.name charm { name = "indico" } config = { indico_no_reply_email = "test@example.com" } units = 1 }
Showing juju config is already set to test@example.com:
juju config indico indico_no_reply_email test@example.com
Terraform plan output
# juju_application.indico will be updated in-place ~ resource "juju_application" "indico" { ~ config = { + "indico_no_reply_email" = "test@example.com" } id = "stg-events:indico" name = "indico" # (3 unchanged attributes hidden) }
N/A
Terraform plan should recognise that the config value is already set to the one it says it's going to change it to.
Terraform plan shows it's going to change the config.
Please list the steps required to reproduce the issue, for example:
juju deploy indico --config indico_no_reply_email="test@example.com"
terraform import juju_application.indico stg-events:indico
terraform plan
The text was updated successfully, but these errors were encountered:
Can we have a 0.4.2 release so this change can be used?
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Terraform Version
Affected Resource(s)
juju_application
Terraform Configuration Files
Debug Output
Showing juju config is already set to test@example.com:
Terraform plan output
Panic Output
N/A
Expected Behavior
Terraform plan should recognise that the config value is already set to the one it says it's going to change it to.
Actual Behavior
Terraform plan shows it's going to change the config.
Steps to Reproduce
Please list the steps required to reproduce the issue, for example:
juju deploy indico --config indico_no_reply_email="test@example.com"
terraform import juju_application.indico stg-events:indico
terraform plan
Important Factoids
N/A
References
N/A
The text was updated successfully, but these errors were encountered: