Cannot configure Solution Landing Zone in VMware Cloud Director
search cancel

Cannot configure Solution Landing Zone in VMware Cloud Director

book

Article ID: 375547

calendar_today

Updated On:

Products

VMware Cloud Director

Issue/Introduction

  • Configuring the Solution Landing Zone as per the documentation.
  • The task is created and shows successful completion status.
  • Clicking on the Configure button again shows the configuration wizard.
  • No errors are seen form Cloud Director or browser logs.
  • VMware Cloud Director Encryption Management cannot be configured due to this issue.

Environment

VMware Cloud Director

Cause

This is due to multiple Solution Landing Zones created with multiple tenants. One of the tenants used for testing the configuration was also deleted.

Resolution

  • Using API, get a list of the stale Solution Landing Zones created. The below request will write the output to a file.

    curl -k -v -X GET "https://<VCD FQDN or IP> /cloudapi/1.0.0/entities/types/vmware/solutions_organization/1.0.0" --header "Accept:application/*;version=38.1" --header "Authorization: Bearer <token>" > /opt/vmware/vcloud-director/data/transfer/apioutput.txt

  • For each entry, carry out the delete with the below request:

    curl -k -v -X DELETE "https://<VCD FQDN or IP>/cloudapi/1.0.0/entities/<each URN from the GET request>" --header "Accept:application/*;version=38.1" --header "Authorization: Bearer <token>" 

  • Create the Solution Landing Zone again as per the documentation.

Additional Information

Refer the article for steps to establish an API connection in VMware Cloud Director.