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
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
Affected Resource(s)
ibm_iam_trusted_profile_link
Expected Behavior
Documentation states;
namespace - (Required, String) The compute resource namespace, only required if cr_type is IKS_SA or ROKS_SA.
If cr_type = VSI, then namespace argument is not required in the link.
Actual Behavior
My snippet;
resource "ibm_iam_trusted_profile_link" "itself" {
profile_id = var.trusted_profile_id
cr_type = "VSI"
link {
crn = var.target_vsi_crn
}
name = var.trusted_profile_link_name
}
Error;
Error: Missing required argument
│
│ on resources/ibmcloud/security/iam/trusted_profile_link/trusted_profile_link.tf line 20, in resource "ibm_iam_trusted_profile_link" "itself":
│ 20: link {
│
│ The argument "namespace" is required, but no definition was found.
The text was updated successfully, but these errors were encountered:
Community Note
Terraform CLI and Terraform IBM Provider Version
Affected Resource(s)
Expected Behavior
Documentation states;
If
cr_type = VSI
, thennamespace
argument is not required in the link.Actual Behavior
My snippet;
Error;
The text was updated successfully, but these errors were encountered: