Closed feliperfmarques closed 3 years ago
@feliperfmarques We are not able to reproduce the issue we are able to successfully create an ALB with an imported certiifcate from a certificate instance
resource "ibm_container_alb_cert" "cert" {
cert_crn = ibm_certificate_manager_import.cert.id
secret_name = "testmy"
cluster_id = "XXXXXX"
namespace = kubernetes_namespace.example.metadata.*.name[0]
}
data "ibm_container_cluster_config" "cluster_foo" {
cluster_name_id = "XXXX"
}
provider "kubernetes" {
host = data.ibm_container_cluster_config.cluster_foo.host
token = data.ibm_container_cluster_config.cluster_foo.token
cluster_ca_certificate = data.ibm_container_cluster_config.cluster_foo.ca_certificate
}
resource "kubernetes_namespace" "example" {
metadata {
name = "terraform-example-namespace"
}
}
Can you please raise a support ticket on IKS and ask them to investigate more on incident ID " {"incidentID":"6238e6eb735df1f6-GRU"...}
closing the issue...
Hi there,
I am trying to create an ALB certificate, using certificates stored in my instance of the Certificate Manager, using this terraform code. It is curious that this same code worked perfectly a few days ago:
But now, I got this error:
In my activity tracker instance, I can see:
Terraform Version
IAM Permissions
For provisioning this terraform code, I am using service Id with following IAM permissions:
IKS Version
Expected Behavior
Create ALB certificate successfully
Actual Behavior
Permissions error in ALB certificate create process
Steps to Reproduce