-
Notifications
You must be signed in to change notification settings - Fork 143
New issue
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
add adv oidc parameters #339
Conversation
Hi, is it possible, in the documentation, for the resource, to have a simple example, the simplest one, to create an kube oidc resource, and another more complete (in order to know a concrete example for every fields)? Thanks :) |
Moreover, is it possible to add the possibility to import an oidc resource? |
} | ||
|
||
output "oidc-val" { | ||
value = data.ovh_cloud_project_kube_iprestrictions.oidc.client_id |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
value = data.ovh_cloud_project_kube_iprestrictions.oidc.client_id | |
value = data.ovh_cloud_project_kube_oidc.oidc.client_id |
ovh/data_cloud_project_kube_oidc.go
Outdated
endpoint := fmt.Sprintf("/cloud/project/%s/kube/%s/openIdConnect", serviceName, kubeId) | ||
res := &CloudProjectKubeOIDCResponse{} | ||
|
||
log.Printf("[DEBUG] Will read oidc from kube %s and project: %s", kubeId, serviceName) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
log.Printf("[DEBUG] Will read oidc from kube %s and project: %s", kubeId, serviceName) | |
log.Printf("[DEBUG] Will read OIDC from kube %s and project: %s", kubeId, serviceName) |
ovh/data_cloud_project_kube_oidc.go
Outdated
} | ||
d.SetId(kubeId + "-" + res.ClientID + "-" + res.IssuerUrl) | ||
|
||
log.Printf("[DEBUG] Read oidc %+v", res) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
log.Printf("[DEBUG] Read oidc %+v", res) | |
log.Printf("[DEBUG] Read OIDC %+v", res) |
Config: config, | ||
Check: resource.ComposeTestCheckFunc( | ||
resource.TestCheckResourceAttr( | ||
"data.ovh_cloud_project_kube_oidc.oidcData", "client_id", "toto"), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"data.ovh_cloud_project_kube_oidc.oidcData", "client_id", "toto"), | |
"data.ovh_cloud_project_kube_oidc.oidcData", "client_id", "my-oidc-client-id"), |
service_name = ovh_cloud_project_kube.cluster.service_name | ||
kube_id = ovh_cloud_project_kube.cluster.id | ||
|
||
client_id = "toto" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
client_id = "toto" | |
client_id = "my-oidc-client-id" |
|
15584ca
to
5d0de3f
Compare
of course agree |
resource oidc data oidc test acceptance doc
5d0de3f
to
db1dc2f
Compare
resource oidc
data oidc
test acceptance
doc