Raúl Sánchez
Raúl Sánchez
@mikekuzak , in your case, the problem seems to be at how [`rancher2_app_v2.cluster_id`](https://registry.terraform.io/providers/rancher/rancher2/latest/docs/resources/app_v2#cluster_id) is defined (known after apply). Changes on this argument force the resource to be replaced, ``` ~...
@iTaybb , yes, it seems a race condition between bootstrap is done and the `local` cluster is active. Fix added at PR #679, `rancher2_bootstrap` resource will wait until `local` cluster...
PR https://github.com/rancher/terraform-provider-rancher2/pull/679 is already merged. The fix will be available at next tf provider release. Please, reopen issue if needed.
Hi @armsnyder , as shown in the docs, values should be passed in yaml format json format is not supported, https://registry.terraform.io/providers/rancher/rancher2/latest/docs/resources/app_v2#values
@armsnyder , it seems the `ghodssyaml.Unmarshal()` function is also accepting json format, but the provider is not supporting it, as expressed at the docs. We'll work on checking `ghodssyaml` functions...
Hi @armsnyder , the `values` argument comparison is not done as string, it's done at low level using `map[string]interface{}` and `reflect.DeepEqual`, https://github.com/rancher/terraform-provider-rancher2/blob/master/rancher2/schema_app_v2.go#L129 The gist link that you've attached, is showing...
Hello @sentry-gun , yes, that sounds weird, the tfp is not managing `namespaceId` to create `ClusterRegistrationToken`. What Rancher version are you using?? Have you updated Rancher server??
Tested your config using same Rancher2 and tfp versions but unable to reproduce the issue, cluster and cluster registration token are both created properly. Are you using same user on...
I'm not able to reproduce the issue using your config and versions, working fine to me. Something related to your installation?? Have you tested same tf config on another rancher...
@sgran , more than happy to accept a PR with this feature