Skip to content

Commit fe29766

Browse files
author
Dzmitry Kishylau
authored
[fix] Set default creation options when importing retool_space resource (#34)
1 parent 5ad27f5 commit fe29766

File tree

2 files changed

+64
-16
lines changed

2 files changed

+64
-16
lines changed

internal/provider/space/resource.go

+38-16
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ import (
88
"github.com/tryretool/terraform-provider-retool/internal/sdk/api"
99

1010
"github.com/hashicorp/terraform-plugin-framework/attr"
11+
"github.com/hashicorp/terraform-plugin-framework/diag"
1112
"github.com/hashicorp/terraform-plugin-framework/path"
1213
"github.com/hashicorp/terraform-plugin-framework/resource"
1314
"github.com/hashicorp/terraform-plugin-framework/resource/schema"
@@ -49,20 +50,11 @@ type spaceCreateOptionsModel struct {
4950
CreateAdminUser types.Bool `tfsdk:"create_admin_user"`
5051
}
5152

52-
// Create new Space resource.
53-
func NewResource() resource.Resource {
54-
return &spaceResource{}
55-
}
56-
57-
func (r *spaceResource) Metadata(_ context.Context, req resource.MetadataRequest, resp *resource.MetadataResponse) {
58-
resp.TypeName = req.ProviderTypeName + "_space"
59-
}
60-
61-
func (r *spaceResource) Schema(_ context.Context, _ resource.SchemaRequest, resp *resource.SchemaResponse) {
62-
emptyList, diags := types.ListValue(types.StringType, []attr.Value{})
63-
resp.Diagnostics.Append(diags...)
64-
if resp.Diagnostics.HasError() {
65-
return
53+
func getDefaultCreateOptions(diags *diag.Diagnostics) *basetypes.ObjectValue {
54+
emptyList, localDiags := types.ListValue(types.StringType, []attr.Value{})
55+
diags.Append(localDiags...)
56+
if diags.HasError() {
57+
return nil
6658
}
6759

6860
defaultCreateOptionsTypes := map[string]attr.Type{
@@ -77,12 +69,35 @@ func (r *spaceResource) Schema(_ context.Context, _ resource.SchemaRequest, resp
7769
"users_to_copy_as_admins": emptyList,
7870
"create_admin_user": types.BoolValue(true),
7971
}
80-
defaultCreateOptions, diags := types.ObjectValue(defaultCreateOptionsTypes, defaultCreateOptionsValues)
72+
defaultCreateOptions, localDiags := types.ObjectValue(defaultCreateOptionsTypes, defaultCreateOptionsValues)
73+
diags.Append(localDiags...)
74+
if diags.HasError() {
75+
return nil
76+
}
77+
return &defaultCreateOptions
78+
}
79+
80+
// Create new Space resource.
81+
func NewResource() resource.Resource {
82+
return &spaceResource{}
83+
}
84+
85+
func (r *spaceResource) Metadata(_ context.Context, req resource.MetadataRequest, resp *resource.MetadataResponse) {
86+
resp.TypeName = req.ProviderTypeName + "_space"
87+
}
88+
89+
func (r *spaceResource) Schema(_ context.Context, _ resource.SchemaRequest, resp *resource.SchemaResponse) {
90+
emptyList, diags := types.ListValue(types.StringType, []attr.Value{})
8191
resp.Diagnostics.Append(diags...)
8292
if resp.Diagnostics.HasError() {
8393
return
8494
}
8595

96+
defaultCreateOptions := getDefaultCreateOptions(&resp.Diagnostics)
97+
if resp.Diagnostics.HasError() || defaultCreateOptions == nil {
98+
return
99+
}
100+
86101
resp.Schema = schema.Schema{
87102
Description: "Space resource allows you to create and manage Spaces in Retool. The provider must be configured using the hostname of the admin Space.",
88103
Attributes: map[string]schema.Attribute{
@@ -144,7 +159,7 @@ func (r *spaceResource) Schema(_ context.Context, _ resource.SchemaRequest, resp
144159
},
145160
},
146161
},
147-
Default: objectdefault.StaticValue(defaultCreateOptions),
162+
Default: objectdefault.StaticValue(*defaultCreateOptions),
148163
PlanModifiers: []planmodifier.Object{
149164
objectplanmodifier.UseStateForUnknown(),
150165
objectplanmodifier.RequiresReplace(),
@@ -318,4 +333,11 @@ func (r *spaceResource) Delete(ctx context.Context, req resource.DeleteRequest,
318333
func (r *spaceResource) ImportState(ctx context.Context, req resource.ImportStateRequest, resp *resource.ImportStateResponse) {
319334
// Retrieve import ID and save to id attribute.
320335
resource.ImportStatePassthroughID(ctx, path.Root("id"), req, resp)
336+
337+
// Need to set default create options so that TF doesn't attempt to re-create the space.
338+
defaultCreateOptions := getDefaultCreateOptions(&resp.Diagnostics)
339+
if resp.Diagnostics.HasError() || defaultCreateOptions == nil {
340+
return
341+
}
342+
resp.State.SetAttribute(ctx, path.Root("create_options"), *defaultCreateOptions)
321343
}

internal/provider/space/resource_test.go

+26
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ import (
88
"testing"
99

1010
"github.com/hashicorp/terraform-plugin-testing/helper/resource"
11+
"github.com/hashicorp/terraform-plugin-testing/terraform"
1112

1213
"github.com/tryretool/terraform-provider-retool/internal/acctest"
1314
)
@@ -69,6 +70,31 @@ func TestAccSpace(t *testing.T) {
6970
{
7071
ResourceName: "retool_space.test_space",
7172
ImportState: true,
73+
ImportStateCheck: func(state []*terraform.InstanceState) error {
74+
if len(state) != 1 {
75+
return fmt.Errorf("Unexpected number of objects in state %d", len(state))
76+
}
77+
stateObj := state[0]
78+
if stateObj.Attributes["name"] != "tf-acc-test-space" {
79+
return fmt.Errorf("Unexpected name %s", stateObj.Attributes["name"])
80+
}
81+
if stateObj.Attributes["domain"] != "tfspace.localhost" {
82+
return fmt.Errorf("Unexpected domain %s", stateObj.Attributes["domain"])
83+
}
84+
if stateObj.Attributes["create_options.copy_sso_settings"] != "false" {
85+
return fmt.Errorf("Unexpected copy_sso_settings %s", stateObj.Attributes["create_options.copy_sso_settings"])
86+
}
87+
if stateObj.Attributes["create_options.copy_branding_and_themes_settings"] != "false" {
88+
return fmt.Errorf("Unexpected copy_branding_and_themes_settings %s", stateObj.Attributes["create_options.copy_branding_and_themes_settings"])
89+
}
90+
if stateObj.Attributes["create_options.create_admin_user"] != "true" {
91+
return fmt.Errorf("Unexpected create_admin_user %s", stateObj.Attributes["create_options.create_admin_user"])
92+
}
93+
if stateObj.Attributes["create_options.users_to_copy_as_admins.#"] != "0" {
94+
return fmt.Errorf("Unexpected users_to_copy_as_admins %s", stateObj.Attributes["create_options.users_to_copy_as_admins.#"])
95+
}
96+
return nil
97+
},
7298
},
7399
// Update and Read.
74100
{

0 commit comments

Comments
 (0)