-
Notifications
You must be signed in to change notification settings - Fork 4.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
azurerm_security_center_setting
- fix a bug when name SENTINEL
#24497
Changes from 3 commits
3713a13
2bbf094
509c9e2
0fa9d7e
f02d21a
f5b6aa5
c0b5485
095d6bf
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -0,0 +1,45 @@ | ||||||||||||||||||||||||||||||||||||||
// Copyright (c) HashiCorp, Inc. | ||||||||||||||||||||||||||||||||||||||
// SPDX-License-Identifier: MPL-2.0 | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
package migration | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
import ( | ||||||||||||||||||||||||||||||||||||||
"context" | ||||||||||||||||||||||||||||||||||||||
"log" | ||||||||||||||||||||||||||||||||||||||
"strings" | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
"github.com/hashicorp/terraform-provider-azurerm/internal/tf/pluginsdk" | ||||||||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
var _ pluginsdk.StateUpgrade = SecurityCenterSettingsV0ToV1{} | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
type SecurityCenterSettingsV0ToV1 struct{} | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
func (SecurityCenterSettingsV0ToV1) Schema() map[string]*pluginsdk.Schema { | ||||||||||||||||||||||||||||||||||||||
return map[string]*pluginsdk.Schema{ | ||||||||||||||||||||||||||||||||||||||
"enabled": { | ||||||||||||||||||||||||||||||||||||||
Required: true, | ||||||||||||||||||||||||||||||||||||||
Type: pluginsdk.TypeBool, | ||||||||||||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||||||||||||
"setting_name": { | ||||||||||||||||||||||||||||||||||||||
Required: true, | ||||||||||||||||||||||||||||||||||||||
Type: pluginsdk.TypeString, | ||||||||||||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
func (SecurityCenterSettingsV0ToV1) UpgradeFunc() pluginsdk.StateUpgraderFunc { | ||||||||||||||||||||||||||||||||||||||
return func(ctx context.Context, rawState map[string]interface{}, meta interface{}) (map[string]interface{}, error) { | ||||||||||||||||||||||||||||||||||||||
log.Println("[DEBUG] Migrating Security Center Settings from v0 to v1 format") | ||||||||||||||||||||||||||||||||||||||
oldId := rawState["id"].(string) | ||||||||||||||||||||||||||||||||||||||
// only find the last one | ||||||||||||||||||||||||||||||||||||||
idx := strings.LastIndex(oldId, "/SENTINEL") | ||||||||||||||||||||||||||||||||||||||
newId := oldId[:idx] + "/Sentinel" | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
log.Printf("[DEBUG] Updating ID from %q to %q", oldId, newId) | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
rawState["id"] = newId | ||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This will crash on security settings with other setting names since
Suggested change
|
||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
return rawState, nil | ||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,11 +8,14 @@ import ( | |
"time" | ||
|
||
"github.com/hashicorp/go-azure-sdk/resource-manager/security/2022-05-01/settings" | ||
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" | ||
"github.com/hashicorp/terraform-provider-azurerm/helpers/tf" | ||
"github.com/hashicorp/terraform-provider-azurerm/internal/clients" | ||
"github.com/hashicorp/terraform-provider-azurerm/internal/features" | ||
"github.com/hashicorp/terraform-provider-azurerm/internal/services/securitycenter/migration" | ||
"github.com/hashicorp/terraform-provider-azurerm/internal/services/securitycenter/parse" | ||
"github.com/hashicorp/terraform-provider-azurerm/internal/tf/pluginsdk" | ||
"github.com/hashicorp/terraform-provider-azurerm/internal/tf/suppress" | ||
"github.com/hashicorp/terraform-provider-azurerm/internal/tf/validation" | ||
"github.com/hashicorp/terraform-provider-azurerm/internal/timeouts" | ||
) | ||
|
@@ -46,11 +49,23 @@ func resourceSecurityCenterSetting() *pluginsdk.Resource { | |
Delete: pluginsdk.DefaultTimeout(10 * time.Minute), | ||
}, | ||
|
||
SchemaVersion: 1, | ||
StateUpgraders: pluginsdk.StateUpgrades(map[int]pluginsdk.StateUpgrade{ | ||
0: migration.SecurityCenterSettingsV0ToV1{}, | ||
}), | ||
|
||
Schema: map[string]*pluginsdk.Schema{ | ||
"setting_name": { | ||
Type: pluginsdk.TypeString, | ||
Required: true, | ||
ForceNew: true, | ||
Type: pluginsdk.TypeString, | ||
Required: true, | ||
ForceNew: true, | ||
DiffSuppressFunc: func() func(string, string, string, *schema.ResourceData) bool { | ||
// This is a workaround for `SENTINEL` value. | ||
if !features.FourPointOhBeta() { | ||
return suppress.CaseDifference | ||
} | ||
return nil | ||
}(), | ||
ValidateFunc: validation.StringInSlice(validSettingName, false), | ||
}, | ||
"enabled": { | ||
|
@@ -67,7 +82,12 @@ func resourceSecurityCenterSettingUpdate(d *pluginsdk.ResourceData, meta interfa | |
ctx, cancel := timeouts.ForUpdate(meta.(*clients.Client).StopContext, d) | ||
defer cancel() | ||
|
||
id := settings.NewSettingID(subscriptionId, settings.SettingName(d.Get("setting_name").(string))) | ||
settingName := d.Get("setting_name").(string) | ||
if settingName == "SENTINEL" { | ||
settingName = "Sentinel" | ||
} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can we put this behind the 4.0 flag as well |
||
|
||
id := settings.NewSettingID(subscriptionId, settings.SettingName(settingName)) | ||
|
||
if d.IsNewResource() { | ||
existing, err := client.Get(ctx, id) | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we update the name of the state migration to be consistent with the file name of the resource
security_center_settings_v0_to_v1.go
->security_center_setting_v0_to_v1.go