8
8
"github.com/tryretool/terraform-provider-retool/internal/sdk/api"
9
9
10
10
"github.com/hashicorp/terraform-plugin-framework/attr"
11
+ "github.com/hashicorp/terraform-plugin-framework/diag"
11
12
"github.com/hashicorp/terraform-plugin-framework/path"
12
13
"github.com/hashicorp/terraform-plugin-framework/resource"
13
14
"github.com/hashicorp/terraform-plugin-framework/resource/schema"
@@ -49,20 +50,11 @@ type spaceCreateOptionsModel struct {
49
50
CreateAdminUser types.Bool `tfsdk:"create_admin_user"`
50
51
}
51
52
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
66
58
}
67
59
68
60
defaultCreateOptionsTypes := map [string ]attr.Type {
@@ -77,12 +69,35 @@ func (r *spaceResource) Schema(_ context.Context, _ resource.SchemaRequest, resp
77
69
"users_to_copy_as_admins" : emptyList ,
78
70
"create_admin_user" : types .BoolValue (true ),
79
71
}
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 {})
81
91
resp .Diagnostics .Append (diags ... )
82
92
if resp .Diagnostics .HasError () {
83
93
return
84
94
}
85
95
96
+ defaultCreateOptions := getDefaultCreateOptions (& resp .Diagnostics )
97
+ if resp .Diagnostics .HasError () || defaultCreateOptions == nil {
98
+ return
99
+ }
100
+
86
101
resp .Schema = schema.Schema {
87
102
Description : "Space resource allows you to create and manage Spaces in Retool. The provider must be configured using the hostname of the admin Space." ,
88
103
Attributes : map [string ]schema.Attribute {
@@ -144,7 +159,7 @@ func (r *spaceResource) Schema(_ context.Context, _ resource.SchemaRequest, resp
144
159
},
145
160
},
146
161
},
147
- Default : objectdefault .StaticValue (defaultCreateOptions ),
162
+ Default : objectdefault .StaticValue (* defaultCreateOptions ),
148
163
PlanModifiers : []planmodifier.Object {
149
164
objectplanmodifier .UseStateForUnknown (),
150
165
objectplanmodifier .RequiresReplace (),
@@ -318,4 +333,11 @@ func (r *spaceResource) Delete(ctx context.Context, req resource.DeleteRequest,
318
333
func (r * spaceResource ) ImportState (ctx context.Context , req resource.ImportStateRequest , resp * resource.ImportStateResponse ) {
319
334
// Retrieve import ID and save to id attribute.
320
335
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 )
321
343
}
0 commit comments