-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpolicy_assignment_resource.go
More file actions
325 lines (275 loc) · 9.34 KB
/
policy_assignment_resource.go
File metadata and controls
325 lines (275 loc) · 9.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
// Copyright Mondoo, Inc. 2024, 2026
// SPDX-License-Identifier: BUSL-1.1
package provider
import (
"context"
"fmt"
"github.com/hashicorp/terraform-plugin-framework-validators/listvalidator"
"github.com/hashicorp/terraform-plugin-framework-validators/stringvalidator"
"github.com/hashicorp/terraform-plugin-framework/path"
"github.com/hashicorp/terraform-plugin-framework/resource/schema/stringdefault"
"github.com/hashicorp/terraform-plugin-framework/schema/validator"
"github.com/hashicorp/terraform-plugin-log/tflog"
mondoov1 "go.mondoo.com/mondoo-go"
"github.com/hashicorp/terraform-plugin-framework/resource"
"github.com/hashicorp/terraform-plugin-framework/resource/schema"
"github.com/hashicorp/terraform-plugin-framework/types"
)
var _ resource.Resource = (*policyAssignmentResource)(nil)
func NewPolicyAssignmentResource() resource.Resource {
return &policyAssignmentResource{}
}
type policyAssignmentResource struct {
client *ExtendedGqlClient
}
type policyAssignmentsResourceModel struct {
// scope
SpaceID types.String `tfsdk:"space_id"`
ScopeMrn types.String `tfsdk:"scope_mrn"`
// assigned policies
PolicyMrns types.List `tfsdk:"policies"`
// state
State types.String `tfsdk:"state"`
}
func (r *policyAssignmentResource) Metadata(_ context.Context, req resource.MetadataRequest, resp *resource.MetadataResponse) {
resp.TypeName = req.ProviderTypeName + "_policy_assignment"
}
func (r *policyAssignmentResource) Schema(_ context.Context, req resource.SchemaRequest, resp *resource.SchemaResponse) {
resp.Schema = schema.Schema{
Attributes: map[string]schema.Attribute{
"space_id": schema.StringAttribute{
MarkdownDescription: "Mondoo space identifier. If there is no space ID, the provider space is used.",
Optional: true,
DeprecationMessage: "Use `scope_mrn` instead.",
},
"scope_mrn": schema.StringAttribute{
MarkdownDescription: "The MRN of the scope (space, organization, or platform) to assign policies to.",
Optional: true,
Validators: []validator.String{
stringvalidator.ConflictsWith(path.MatchRoot("space_id")),
},
},
"policies": schema.ListAttribute{
MarkdownDescription: "Policies to assign to the scope.",
ElementType: types.StringType,
Required: true,
Validators: []validator.List{listvalidator.SizeAtLeast(1)},
},
"state": schema.StringAttribute{
MarkdownDescription: "Policy assignment state (preview, enabled, or disabled).",
Default: stringdefault.StaticString("enabled"),
Computed: true,
Optional: true,
Validators: []validator.String{
stringvalidator.OneOf("enabled", "disabled", "preview"),
},
},
},
}
}
func (r *policyAssignmentResource) Configure(ctx context.Context, req resource.ConfigureRequest, resp *resource.ConfigureResponse) {
// Prevent panic if the provider has not been configured.
if req.ProviderData == nil {
return
}
client, ok := req.ProviderData.(*ExtendedGqlClient)
if !ok {
resp.Diagnostics.AddError(
"Unexpected Resource Configure Type",
fmt.Sprintf("Expected *http.Client. Got: %T. Please report this issue to the provider developers.", req.ProviderData),
)
return
}
r.client = client
}
func (r *policyAssignmentResource) getScope(data *policyAssignmentsResourceModel) (string, error) {
if !data.ScopeMrn.IsNull() && data.ScopeMrn.ValueString() != "" {
return data.ScopeMrn.ValueString(), nil
}
space, err := r.client.ComputeSpace(data.SpaceID)
if err != nil {
return "", err
}
return space.MRN(), nil
}
func (r *policyAssignmentResource) Create(ctx context.Context, req resource.CreateRequest, resp *resource.CreateResponse) {
var data policyAssignmentsResourceModel
// Read Terraform plan data into the model
resp.Diagnostics.Append(req.Plan.Get(ctx, &data)...)
if resp.Diagnostics.HasError() {
return
}
// Resolve the scope MRN
scopeMrn, err := r.getScope(&data)
if err != nil {
resp.Diagnostics.AddError("Invalid Configuration", err.Error())
return
}
ctx = tflog.SetField(ctx, "scope_mrn", scopeMrn)
// Do GraphQL request to API to create the resource
policyMrns := []string{}
data.PolicyMrns.ElementsAs(ctx, &policyMrns, false)
state := data.State.ValueString()
tflog.Debug(ctx, "Creating policy assignment")
// default action is active
switch state {
case "", "enabled":
action := mondoov1.PolicyActionActive
err = r.client.AssignPolicy(ctx, scopeMrn, action, policyMrns)
case "preview":
action := mondoov1.PolicyActionIgnore
err = r.client.AssignPolicy(ctx, scopeMrn, action, policyMrns)
case "disabled":
err = r.client.UnassignPolicy(ctx, scopeMrn, policyMrns)
default:
resp.Diagnostics.AddError(
"Invalid state: "+state,
"Invalid state "+state+", use one of: enabled, preview, disabled",
)
return
}
if err != nil {
resp.Diagnostics.AddError(
"Error creating policy assignment",
fmt.Sprintf("Error creating policy assignment: %s", err),
)
return
}
// Save data into Terraform state
resp.Diagnostics.Append(resp.State.Set(ctx, &data)...)
}
func (r *policyAssignmentResource) Read(ctx context.Context, req resource.ReadRequest, resp *resource.ReadResponse) {
var data policyAssignmentsResourceModel
// Read Terraform prior state data into the model
resp.Diagnostics.Append(req.State.Get(ctx, &data)...)
if resp.Diagnostics.HasError() {
return
}
// Resolve the scope MRN
scopeMrn, err := r.getScope(&data)
if err != nil {
resp.Diagnostics.AddError("Invalid Configuration", err.Error())
return
}
ctx = tflog.SetField(ctx, "scope_mrn", scopeMrn)
// Fetch active policies from API
activePolicies, err := r.client.GetActivePolicies(ctx, scopeMrn)
if err != nil {
resp.Diagnostics.AddError("Failed to fetch active policies", err.Error())
return
}
// Build lookup map: policyMrn -> action, filtered by assignedScope
policyActions := make(map[string]string)
for _, p := range activePolicies {
if string(p.AssignedScope) == scopeMrn {
policyActions[string(p.Mrn)] = string(p.Action)
}
}
// Check the actual state of each configured policy
policyMrns := []string{}
data.PolicyMrns.ElementsAs(ctx, &policyMrns, false)
configuredState := data.State.ValueString()
allMatch := true
for _, mrn := range policyMrns {
action, found := policyActions[mrn]
var actualState string
if !found {
actualState = "disabled"
} else {
switch action {
case "ACTIVE":
actualState = "enabled"
case "IGNORE":
actualState = "preview"
default:
actualState = "disabled"
}
}
if actualState != configuredState {
allMatch = false
// Report the actual state of this policy so Terraform sees the drift
data.State = types.StringValue(actualState)
break
}
}
if allMatch {
// All policies match the configured state, no drift
data.State = types.StringValue(configuredState)
}
// Save updated data into Terraform state
resp.Diagnostics.Append(resp.State.Set(ctx, &data)...)
}
func (r *policyAssignmentResource) Update(ctx context.Context, req resource.UpdateRequest, resp *resource.UpdateResponse) {
var data policyAssignmentsResourceModel
// Read Terraform plan data into the model
resp.Diagnostics.Append(req.Plan.Get(ctx, &data)...)
if resp.Diagnostics.HasError() {
return
}
// Resolve the scope MRN
scopeMrn, err := r.getScope(&data)
if err != nil {
resp.Diagnostics.AddError("Invalid Configuration", err.Error())
return
}
ctx = tflog.SetField(ctx, "scope_mrn", scopeMrn)
// Do GraphQL request to API to update the resource
policyMrns := []string{}
data.PolicyMrns.ElementsAs(ctx, &policyMrns, false)
state := data.State.ValueString()
tflog.Debug(ctx, "Updating policy assignment")
// default action is active
switch state {
case "", "enabled":
action := mondoov1.PolicyActionActive
err = r.client.AssignPolicy(ctx, scopeMrn, action, policyMrns)
case "preview":
action := mondoov1.PolicyActionIgnore
err = r.client.AssignPolicy(ctx, scopeMrn, action, policyMrns)
case "disabled":
err = r.client.UnassignPolicy(ctx, scopeMrn, policyMrns)
default:
resp.Diagnostics.AddError(
"Invalid state: "+state,
"Invalid state "+state+". Valid states are enabled, preview, and disabled",
)
return
}
if err != nil {
resp.Diagnostics.AddError(
"Error creating policy assignment",
fmt.Sprintf("Error creating policy assignment: %s", err),
)
return
}
// Save updated data into Terraform state
resp.Diagnostics.Append(resp.State.Set(ctx, &data)...)
}
func (r *policyAssignmentResource) Delete(ctx context.Context, req resource.DeleteRequest, resp *resource.DeleteResponse) {
var data policyAssignmentsResourceModel
// Read Terraform prior state data into the model
resp.Diagnostics.Append(req.State.Get(ctx, &data)...)
if resp.Diagnostics.HasError() {
return
}
// Resolve the scope MRN
scopeMrn, err := r.getScope(&data)
if err != nil {
resp.Diagnostics.AddError("Invalid Configuration", err.Error())
return
}
ctx = tflog.SetField(ctx, "scope_mrn", scopeMrn)
// Do GraphQL request to API to delete the resource
policyMrns := []string{}
data.PolicyMrns.ElementsAs(ctx, &policyMrns, false)
tflog.Debug(ctx, "Deleting policy assignment")
// no matter the state, we unassign the policies
err = r.client.UnassignPolicy(ctx, scopeMrn, policyMrns)
if err != nil {
resp.Diagnostics.AddError(
"Error creating policy assignment",
fmt.Sprintf("Error creating policy assignment: %s", err),
)
return
}
}