Ophir Zahavi
Ophir Zahavi
@monde yes, the key and IdP configurations are created and working as expected. My issue is with the profile mapping.
``` ---[ REQUEST ]--------------------------------------- GET /api/v1/mappings?limit=200 HTTP/1.1 Host: REDACTED.okta.com User-Agent: okta-sdk-golang/2.13.1 golang/go1.17.13 darwin/amd64 okta-terraform/3.34.0 Accept: application/json Authorization: SSWS 00CyAywSYB0bDCIbr00000eJULq00000J6VJvBN6Zl Accept-Encoding: gzip -----------------------------------------------------: timestamp=2022-09-14T08:14:46.896+0300 ``` ``` ---[ RESPONSE ]-------------------------------------- HTTP/2.0 200...
> @ozahavi maybe customer_aad_mapping needs a depends on > > ```terraform > resource "okta_profile_mapping" "customer_aad_mapping" { > # ... > depends_on = [ > data.okta_user_profile_mapping_source.user > ] > } >...
Found the problem - the user was lacking the 'Application Administrator' role. Thanks!
Another question before wrapping up this issue. Is it possible to create custom attributes for a profile that is automatically created as part of a SAML IdP? Couldn't find it...
> I ran into the same issue. This error seems common when you have 2 or more resources in a module. Create a new file in the module and move...
> Maybe you can use [ResourceQuotas](https://kubernetes.io/docs/concepts/policy/resource-quotas/) to achieve this? ResourceQuotas are namespace bound, and I want the limit to be cross-namespaces (cluster level). > Doesn't the union of all resource...
> @ozahavi FWIW all aws-k8s-* AMIs default to serializeImagePulls: false, and maxParallelImagePulls is not set. Is your goal to limit the number of parallel image pulls? My goal is to...
> ng occurs at the pod level, not the container level: https://kubernetes.io/docs/concepts/containers/images/#serial-and-parallel-image-pulls Are your logs showing images for containers defined in the same pod? @ginglis13 Thanks for the clarification. I...