Please vote on this issue by adding a π reaction to the original issue to help the community and maintainers prioritize this request
Please do not leave "+1" or other comments that do not add relevant new information or questions, they generate extra noise for issue followers and do not help prioritize the request
If you are interested in working on this issue or have submitted a pull request, please leave a comment
Terraform CLI and Terraform IBM Provider Version
tf provider 1.63
Affected Resource(s)
ibm_project_config
Terraform Configuration Files
Please include all Terraform configurations required to reproduce the bug. Bug reports without a functional reproduction may be closed without investigation.
# Copy-paste your Terraform configurations here - for large Terraform configs,
# please share a link to the ZIP file.
resource "ibm_project_config" "kms_setup" {
definition {
name = "2a - Security Service - Key Management"
description = "Configures the key management layer."
locator_id = "7df1e4ca-d54c-4fd0-82ce-3d13247308cd.45320da9-fb74-459c-8ebf-0fd70d2c0fc5"
authorizations {
method = "api_key"
api_key = var.ibmcloud_api_key
}
inputs = {
region = "eu-gb"
prefix = var.resource_prefix
resource_group_name = "stack-service-rg"
}
}
project_id = var.project_id
}
resource "ibm_project_config" "sm_setup" {
definition {
name = "2b - Security Service - Secret Manager"
description = "Configures a secret manager instance."
locator_id = "7df1e4ca-d54c-4fd0-82ce-3d13247308cd.a7cdf3aa-de8a-4a81-9127-ec9b7f3f2259"
authorizations {
method = "api_key"
api_key = var.ibmcloud_api_key
}
inputs = {
region = "eu-gb"
prefix = var.resource_prefix
resource_group_name = "stack-service-rg"
existing_kms_guid = "ref:/config/2a - Security Service - Key Management/outputs/kms_guid"
}
}
project_id = var.project_id
}
Community Note
Terraform CLI and Terraform IBM Provider Version
tf provider 1.63
Affected Resource(s)
Terraform Configuration Files
Please include all Terraform configurations required to reproduce the bug. Bug reports without a functional reproduction may be closed without investigation.
Debug Output
Panic Output
Expected Behavior
Actual Behavior
Steps to Reproduce
terraform apply
Important Factoids
References
0000