perrfect

Results 20 comments of perrfect

@adubovikov Can you help please and check?

> Your configuration look correct. > > It's the same that I apply to Ubuntu with Ansible during the Packer build in [Packer Examples for VMware vSphere project](https://vmware-samples.github.io/packer-examples-for-vsphere/). > >...

> You should be customizing with cloud-init using extra_config, otherwise it's using guest tools for customization; hence the issue. Hmm...I'm using the terraform for Rocky Linux and Ubuntu. For Rocky...

@tenthirtyam And should I change my extra_config all time for each VM if I have static IP for each?

@tenthirtyam Hello. I tried do the next configuration: **main.tf** ``` resource "vsphere_virtual_machine" "vm" {   name                    = var.vm_name   resource_pool_id        = data.vsphere_host.host.resource_pool_id   host_system_id          = data.vsphere_host.host.id   datastore_id            = data.vsphere_datastore.datastore.id   wait_for_guest_net_timeout = var.vm_wait_for_guest_net_timeout   wait_for_guest_ip_timeout  ...

Hello. Did you solve the problem with Keycloak authentication? I'm trying to use the Keycloak, but get the error: `"invalid_client_credientials"` When I try to use OIDC via Keycloak, I get...

> Hi, i fixed using like this: > > ``` > auth: > enableOidc: true > oidc: > clientId: > endpoint: https://domain.com/realms/ > scope: openid email profile > ``` Thank...

> Hi I got it working as well using oidc configs: > > ``` > appConfig: > auth: > enableOidc: true > oidc: > endpoint: https://sso.abc.xyz/realms/master > clientId: dashy >...