feat: Allow move state on new Observability resources (#593)
* feat: Allow move state on new Observability resources * Extend description to explain how to move a argus resource to observability * Update argus docs with examples how to move a resource to observability --------- Co-authored-by: Marcel Jacek <Marcel.Jacek@stackit.cloud>
This commit is contained in:
parent
fc805d8e1d
commit
1a66887c01
12 changed files with 438 additions and 15 deletions
|
|
@ -18,6 +18,7 @@ import (
|
|||
"github.com/stackitcloud/stackit-sdk-go/core/oapierror"
|
||||
"github.com/stackitcloud/stackit-sdk-go/services/observability"
|
||||
"github.com/stackitcloud/terraform-provider-stackit/stackit/internal/core"
|
||||
argusCredentialResource "github.com/stackitcloud/terraform-provider-stackit/stackit/internal/services/argus/credential"
|
||||
"github.com/stackitcloud/terraform-provider-stackit/stackit/internal/validate"
|
||||
)
|
||||
|
||||
|
|
@ -25,6 +26,7 @@ import (
|
|||
var (
|
||||
_ resource.Resource = &credentialResource{}
|
||||
_ resource.ResourceWithConfigure = &credentialResource{}
|
||||
_ resource.ResourceWithMoveState = &credentialResource{}
|
||||
)
|
||||
|
||||
type Model struct {
|
||||
|
|
@ -86,6 +88,40 @@ func (r *credentialResource) Configure(ctx context.Context, req resource.Configu
|
|||
tflog.Info(ctx, "Observability credential client configured")
|
||||
}
|
||||
|
||||
func (r *credentialResource) MoveState(_ context.Context) []resource.StateMover {
|
||||
return []resource.StateMover{
|
||||
{
|
||||
SourceSchema: &argusCredentialResource.Schema,
|
||||
StateMover: func(ctx context.Context, req resource.MoveStateRequest, resp *resource.MoveStateResponse) {
|
||||
if req.SourceTypeName != "stackit_argus_credential" {
|
||||
return
|
||||
}
|
||||
|
||||
// Checks source provider
|
||||
if !strings.HasSuffix(req.SourceProviderAddress, "stackitcloud/stackit") {
|
||||
return
|
||||
}
|
||||
|
||||
var sourceStateData argusCredentialResource.Model
|
||||
resp.Diagnostics.Append(req.SourceState.Get(ctx, &sourceStateData)...)
|
||||
if resp.Diagnostics.HasError() {
|
||||
return
|
||||
}
|
||||
|
||||
targetStateData := Model{
|
||||
Id: sourceStateData.Id,
|
||||
ProjectId: sourceStateData.ProjectId,
|
||||
InstanceId: sourceStateData.InstanceId,
|
||||
Username: sourceStateData.Username,
|
||||
Password: sourceStateData.Password,
|
||||
}
|
||||
|
||||
resp.Diagnostics.Append(resp.TargetState.Set(ctx, targetStateData)...)
|
||||
},
|
||||
},
|
||||
}
|
||||
}
|
||||
|
||||
func (r *credentialResource) Schema(_ context.Context, _ resource.SchemaRequest, resp *resource.SchemaResponse) {
|
||||
resp.Schema = schema.Schema{
|
||||
Description: "Observability credential resource schema. Must have a `region` specified in the provider configuration.",
|
||||
|
|
|
|||
|
|
@ -29,6 +29,7 @@ import (
|
|||
"github.com/stackitcloud/stackit-sdk-go/services/observability/wait"
|
||||
"github.com/stackitcloud/terraform-provider-stackit/stackit/internal/conversion"
|
||||
"github.com/stackitcloud/terraform-provider-stackit/stackit/internal/core"
|
||||
argusInstanceResource "github.com/stackitcloud/terraform-provider-stackit/stackit/internal/services/argus/instance"
|
||||
"github.com/stackitcloud/terraform-provider-stackit/stackit/internal/validate"
|
||||
)
|
||||
|
||||
|
|
@ -41,6 +42,7 @@ var (
|
|||
_ resource.Resource = &instanceResource{}
|
||||
_ resource.ResourceWithConfigure = &instanceResource{}
|
||||
_ resource.ResourceWithImportState = &instanceResource{}
|
||||
_ resource.ResourceWithMoveState = &instanceResource{}
|
||||
)
|
||||
|
||||
type Model struct {
|
||||
|
|
@ -373,6 +375,64 @@ func (r *instanceResource) Configure(ctx context.Context, req resource.Configure
|
|||
tflog.Info(ctx, "Observability instance client configured")
|
||||
}
|
||||
|
||||
// MoveState moves the state of a `stackit_argus_instance` resource to a `stackit_observability_instance` resource.
|
||||
func (r *instanceResource) MoveState(_ context.Context) []resource.StateMover {
|
||||
return []resource.StateMover{
|
||||
{
|
||||
SourceSchema: &argusInstanceResource.Schema,
|
||||
StateMover: func(ctx context.Context, req resource.MoveStateRequest, resp *resource.MoveStateResponse) {
|
||||
if req.SourceTypeName != "stackit_argus_instance" {
|
||||
return
|
||||
}
|
||||
|
||||
// Checks source provider
|
||||
if !strings.HasSuffix(req.SourceProviderAddress, "stackitcloud/stackit") {
|
||||
return
|
||||
}
|
||||
|
||||
var sourceStateData argusInstanceResource.Model
|
||||
resp.Diagnostics.Append(req.SourceState.Get(ctx, &sourceStateData)...)
|
||||
if resp.Diagnostics.HasError() {
|
||||
return
|
||||
}
|
||||
|
||||
targetStateData := Model{
|
||||
Id: sourceStateData.Id,
|
||||
ProjectId: sourceStateData.ProjectId,
|
||||
InstanceId: sourceStateData.InstanceId,
|
||||
Name: sourceStateData.Name,
|
||||
PlanName: sourceStateData.PlanName,
|
||||
PlanId: sourceStateData.PlanId,
|
||||
Parameters: sourceStateData.Parameters,
|
||||
DashboardURL: sourceStateData.DashboardURL,
|
||||
IsUpdatable: sourceStateData.IsUpdatable,
|
||||
GrafanaURL: sourceStateData.GrafanaURL,
|
||||
GrafanaPublicReadAccess: sourceStateData.GrafanaPublicReadAccess,
|
||||
GrafanaInitialAdminPassword: sourceStateData.GrafanaInitialAdminPassword,
|
||||
GrafanaInitialAdminUser: sourceStateData.GrafanaInitialAdminUser,
|
||||
MetricsRetentionDays: sourceStateData.MetricsRetentionDays,
|
||||
MetricsRetentionDays5mDownsampling: sourceStateData.MetricsRetentionDays5mDownsampling,
|
||||
MetricsRetentionDays1hDownsampling: sourceStateData.MetricsRetentionDays1hDownsampling,
|
||||
MetricsURL: sourceStateData.MetricsURL,
|
||||
MetricsPushURL: sourceStateData.MetricsPushURL,
|
||||
TargetsURL: sourceStateData.TargetsURL,
|
||||
AlertingURL: sourceStateData.AlertingURL,
|
||||
LogsURL: sourceStateData.LogsURL,
|
||||
LogsPushURL: sourceStateData.LogsPushURL,
|
||||
JaegerTracesURL: sourceStateData.JaegerTracesURL,
|
||||
JaegerUIURL: sourceStateData.JaegerUIURL,
|
||||
OtlpTracesURL: sourceStateData.OtlpTracesURL,
|
||||
ZipkinSpansURL: sourceStateData.ZipkinSpansURL,
|
||||
ACL: sourceStateData.ACL,
|
||||
AlertConfig: sourceStateData.AlertConfig,
|
||||
}
|
||||
|
||||
resp.Diagnostics.Append(resp.TargetState.Set(ctx, targetStateData)...)
|
||||
},
|
||||
},
|
||||
}
|
||||
}
|
||||
|
||||
// Schema defines the schema for the resource.
|
||||
func (r *instanceResource) Schema(_ context.Context, _ resource.SchemaRequest, resp *resource.SchemaResponse) {
|
||||
resp.Schema = schema.Schema{
|
||||
|
|
|
|||
|
|
@ -32,6 +32,7 @@ import (
|
|||
"github.com/stackitcloud/stackit-sdk-go/services/observability/wait"
|
||||
"github.com/stackitcloud/terraform-provider-stackit/stackit/internal/conversion"
|
||||
"github.com/stackitcloud/terraform-provider-stackit/stackit/internal/core"
|
||||
argusScrapeConfigResource "github.com/stackitcloud/terraform-provider-stackit/stackit/internal/services/argus/scrapeconfig"
|
||||
"github.com/stackitcloud/terraform-provider-stackit/stackit/internal/validate"
|
||||
)
|
||||
|
||||
|
|
@ -48,6 +49,7 @@ var (
|
|||
_ resource.Resource = &scrapeConfigResource{}
|
||||
_ resource.ResourceWithConfigure = &scrapeConfigResource{}
|
||||
_ resource.ResourceWithImportState = &scrapeConfigResource{}
|
||||
_ resource.ResourceWithMoveState = &scrapeConfigResource{}
|
||||
)
|
||||
|
||||
type Model struct {
|
||||
|
|
@ -149,6 +151,47 @@ func (r *scrapeConfigResource) Configure(ctx context.Context, req resource.Confi
|
|||
tflog.Info(ctx, "Observability scrape config client configured")
|
||||
}
|
||||
|
||||
func (r *scrapeConfigResource) MoveState(_ context.Context) []resource.StateMover {
|
||||
return []resource.StateMover{
|
||||
{
|
||||
SourceSchema: &argusScrapeConfigResource.Schema,
|
||||
StateMover: func(ctx context.Context, req resource.MoveStateRequest, resp *resource.MoveStateResponse) {
|
||||
if req.SourceTypeName != "stackit_argus_scrapeconfig" {
|
||||
return
|
||||
}
|
||||
|
||||
// Checks source provider
|
||||
if !strings.HasSuffix(req.SourceProviderAddress, "stackitcloud/stackit") {
|
||||
return
|
||||
}
|
||||
|
||||
var sourceStateData argusScrapeConfigResource.Model
|
||||
resp.Diagnostics.Append(req.SourceState.Get(ctx, &sourceStateData)...)
|
||||
if resp.Diagnostics.HasError() {
|
||||
return
|
||||
}
|
||||
|
||||
targetStateData := Model{
|
||||
Id: sourceStateData.Id,
|
||||
ProjectId: sourceStateData.ProjectId,
|
||||
InstanceId: sourceStateData.InstanceId,
|
||||
Name: sourceStateData.Name,
|
||||
MetricsPath: sourceStateData.MetricsPath,
|
||||
Scheme: sourceStateData.Scheme,
|
||||
ScrapeInterval: sourceStateData.ScrapeInterval,
|
||||
ScrapeTimeout: sourceStateData.ScrapeTimeout,
|
||||
SampleLimit: sourceStateData.SampleLimit,
|
||||
SAML2: sourceStateData.SAML2,
|
||||
BasicAuth: sourceStateData.BasicAuth,
|
||||
Targets: sourceStateData.Targets,
|
||||
}
|
||||
|
||||
resp.Diagnostics.Append(resp.TargetState.Set(ctx, targetStateData)...)
|
||||
},
|
||||
},
|
||||
}
|
||||
}
|
||||
|
||||
// Schema defines the schema for the resource.
|
||||
func (r *scrapeConfigResource) Schema(_ context.Context, _ resource.SchemaRequest, resp *resource.SchemaResponse) {
|
||||
resp.Schema = schema.Schema{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue