Skip to content

Commit c311135

Browse files
author
Arthur Amstutz
committed
feat: Add VCD organization datasource
1 parent b47cd8f commit c311135

9 files changed

+1725
-0
lines changed

.cds/terraform-provider-ovh.pip.yml

+6
Original file line numberDiff line numberDiff line change
@@ -61,3 +61,9 @@ parameters:
6161
skipthistest.okms:
6262
type: boolean
6363
description: Skip OKMS tests
64+
skipthistest.dedicatedcloud:
65+
type: boolean
66+
description: Skip dedicatedCloud tests
67+
skipthistest.vcd:
68+
type: boolean
69+
description: Skip VCD tests

.cds/terraform-provider-ovh.yml

+26
Original file line numberDiff line numberDiff line change
@@ -423,6 +423,30 @@ workflow:
423423
pipeline: terraform-provider-ovh-testacc
424424
when:
425425
- success
426+
Tests_DedicatedCloud:
427+
application: terraform-provider-ovh
428+
depends_on:
429+
- terraform-provider-ovh-pre-sweepers
430+
environment: acctests
431+
one_at_a_time: true
432+
parameters:
433+
testargs: -run DedicatedCloud
434+
skipthispipeline: "{{.workflow.terraform-provider-ovh.pip.skipthistest.dedicatedcloud}}"
435+
pipeline: terraform-provider-ovh-testacc
436+
when:
437+
- success
438+
Tests_VMwareCloudDirector:
439+
application: terraform-provider-ovh
440+
depends_on:
441+
- terraform-provider-ovh-pre-sweepers
442+
environment: acctests
443+
one_at_a_time: true
444+
parameters:
445+
testargs: -run VMwareCloudDirector
446+
skipthispipeline: "{{.workflow.terraform-provider-ovh.pip.skipthistest.vcd}}"
447+
pipeline: terraform-provider-ovh-testacc
448+
when:
449+
- success
426450
Tests_DedicatedCeph:
427451
application: terraform-provider-ovh
428452
depends_on:
@@ -855,6 +879,8 @@ workflow:
855879
- Tests_Okms
856880
- Tests_SavingsPlan
857881
- Tests_CloudProjectRancher
882+
- Tests_DedicatedCloud
883+
- Tests_VMwareCloudDirector
858884
environment: acctests
859885
one_at_a_time: true
860886
pipeline: terraform-provider-ovh-run-sweepers
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
---
2+
subcategory: "VMware Cloud Director (VCD)"
3+
---
4+
5+
# ovh_vmware_cloud_director_organization (Data Source)
6+
7+
Get VMware Cloud Director organization details
8+
9+
## Example Usage
10+
11+
```terraform
12+
data "ovh_vmware_cloud_director_organization" "organization" {
13+
organization_id = "<VCD organization ID>"
14+
}
15+
```
16+
17+
<!-- schema generated by tfplugindocs -->
18+
## Schema
19+
20+
### Required
21+
22+
- `organization_id` (String) Organization ID
23+
24+
### Read-Only
25+
26+
- `current_state` (Attributes) Current state of VMware Cloud Director organization service (see [below for nested schema](#nestedatt--current_state))
27+
- `current_tasks` (Attributes List) Asynchronous operations ongoing on the VMware Cloud Director organization (see [below for nested schema](#nestedatt--current_tasks))
28+
- `iam` (Attributes) IAM resource metadata (see [below for nested schema](#nestedatt--iam))
29+
- `id` (String) Unique identifier
30+
- `resource_status` (String) Reflects the readiness of the VMware Cloud Director organization.
31+
- `target_spec` (Attributes) Target specification of VMware Cloud Director organization service (see [below for nested schema](#nestedatt--target_spec))
32+
- `updated_at` (String)
33+
34+
<a id="nestedatt--current_state"></a>
35+
### Nested Schema for `current_state`
36+
37+
Read-Only:
38+
39+
- `api_url` (String) API URL to interact with your VMware Cloud Director organization at OVHcloud
40+
- `billing_type` (String) Billing type of your VMware Cloud Director project
41+
- `description` (String) Description of your VMware Cloud Director organization on OVHcloud
42+
- `full_name` (String) Human readable full name of your VMware Cloud Director organization
43+
- `name` (String) Name of your VMware Cloud Director organization
44+
- `region` (String) Datacenter where your VMware Cloud Director organization is physically located
45+
- `spla` (Boolean) SPLA licensing state
46+
- `web_interface_url` (String) URL to administrate your VMware Cloud Director organization at OVHcloud
47+
48+
49+
<a id="nestedatt--current_tasks"></a>
50+
### Nested Schema for `current_tasks`
51+
52+
Read-Only:
53+
54+
- `id` (String) Identifier of the current task
55+
- `link` (String) Link to the task details
56+
- `status` (String) Current global status of the current task
57+
- `type` (String) Type of the current task
58+
59+
60+
<a id="nestedatt--iam"></a>
61+
### Nested Schema for `iam`
62+
63+
Read-Only:
64+
65+
- `display_name` (String) Resource display name
66+
- `id` (String) Unique identifier of the resource
67+
- `tags` (Map of String) Resource tags. Tags that were internally computed are prefixed with ovh:
68+
- `urn` (String) Unique resource name used in policies
69+
70+
71+
<a id="nestedatt--target_spec"></a>
72+
### Nested Schema for `target_spec`
73+
74+
Read-Only:
75+
76+
- `description` (String) Description of your VMware Cloud Director organization at OVHcloud
77+
- `full_name` (String) Human readable full name of your VMware Cloud Director organization
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
data "ovh_vmware_cloud_director_organization" "organization" {
2+
organization_id = "<VCD organization ID>"
3+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
package ovh
2+
3+
import (
4+
"context"
5+
"fmt"
6+
"net/url"
7+
8+
"github.com/hashicorp/terraform-plugin-framework/datasource"
9+
)
10+
11+
var _ datasource.DataSourceWithConfigure = (*vmwareCloudDirectorOrganizationDataSource)(nil)
12+
13+
func NewVmwareCloudDirectorOrganizationDataSource() datasource.DataSource {
14+
return &vmwareCloudDirectorOrganizationDataSource{}
15+
}
16+
17+
type vmwareCloudDirectorOrganizationDataSource struct {
18+
config *Config
19+
}
20+
21+
func (d *vmwareCloudDirectorOrganizationDataSource) Metadata(ctx context.Context, req datasource.MetadataRequest, resp *datasource.MetadataResponse) {
22+
resp.TypeName = req.ProviderTypeName + "_vmware_cloud_director_organization"
23+
}
24+
25+
func (d *vmwareCloudDirectorOrganizationDataSource) Configure(_ context.Context, req datasource.ConfigureRequest, resp *datasource.ConfigureResponse) {
26+
if req.ProviderData == nil {
27+
return
28+
}
29+
30+
config, ok := req.ProviderData.(*Config)
31+
if !ok {
32+
resp.Diagnostics.AddError(
33+
"Unexpected Data Source Configure Type",
34+
fmt.Sprintf("Expected *Config, got: %T. Please report this issue to the provider developers.", req.ProviderData),
35+
)
36+
return
37+
}
38+
39+
d.config = config
40+
}
41+
42+
func (d *vmwareCloudDirectorOrganizationDataSource) Schema(ctx context.Context, req datasource.SchemaRequest, resp *datasource.SchemaResponse) {
43+
resp.Schema = VmwareCloudDirectorOrganizationDataSourceSchema(ctx)
44+
}
45+
46+
func (d *vmwareCloudDirectorOrganizationDataSource) Read(ctx context.Context, req datasource.ReadRequest, resp *datasource.ReadResponse) {
47+
var data VmwareCloudDirectorOrganizationModel
48+
49+
// Read Terraform configuration data into the model
50+
resp.Diagnostics.Append(req.Config.Get(ctx, &data)...)
51+
52+
if resp.Diagnostics.HasError() {
53+
return
54+
}
55+
56+
// Read API call logic
57+
endpoint := "/v2/vmwareCloudDirector/organization/" + url.PathEscape(data.OrganizationId.ValueString())
58+
if err := d.config.OVHClient.Get(endpoint, &data); err != nil {
59+
resp.Diagnostics.AddError(
60+
fmt.Sprintf("Error calling Get %s", endpoint),
61+
err.Error(),
62+
)
63+
return
64+
}
65+
66+
// Save data into Terraform state
67+
resp.Diagnostics.Append(resp.State.Set(ctx, &data)...)
68+
}

0 commit comments

Comments
 (0)