Skip to content
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

fix(rds/dbinstance): Ignore VPCSecurityGroupIDs for cluster instances #1971

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions apis/rds/generator-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@ resources:
from:
operation: ModifyDBInstance
path: AllowMajorVersionUpgrade
DBClusterIdentifier:
is_read_only: true
from:
operation: DescribeDBInstances
path: DBInstances.DBClusterIdentifier
DBCluster:
fields:
AllowMajorVersionUpgrade:
Expand Down
3 changes: 3 additions & 0 deletions apis/rds/v1alpha1/zz_db_instance.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions apis/rds/v1alpha1/zz_generated.deepcopy.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions package/crds/rds.aws.crossplane.io_dbinstances.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1665,6 +1665,11 @@ spec:
CoIPs, see Customer-owned IP addresses (https://docs.aws.amazon.com/outposts/latest/userguide/routing.html#ip-addressing)
in the Amazon Web Services Outposts User Guide."
type: boolean
dbClusterIdentifier:
description: If the DB instance is a member of a DB cluster, indicates
the name of the DB cluster that the DB instance is a member
of.
type: string
dbInstanceARN:
description: The Amazon Resource Name (ARN) for the DB instance.
type: string
Expand Down
36 changes: 28 additions & 8 deletions pkg/controller/rds/dbinstance/setup.go
Original file line number Diff line number Diff line change
Expand Up @@ -147,12 +147,20 @@ func (e *custom) preCreate(ctx context.Context, cr *svcapitypes.DBInstance, obj

obj.MasterUserPassword = pointer.ToOrNilIfZeroValue(pw)
obj.DBInstanceIdentifier = pointer.ToOrNilIfZeroValue(meta.GetExternalName(cr))
if len(cr.Spec.ForProvider.VPCSecurityGroupIDs) > 0 {
obj.VpcSecurityGroupIds = make([]*string, len(cr.Spec.ForProvider.VPCSecurityGroupIDs))
for i, v := range cr.Spec.ForProvider.VPCSecurityGroupIDs {
obj.VpcSecurityGroupIds[i] = pointer.ToOrNilIfZeroValue(v)

// VpcSecurityGroupIds cannot be set on an instance that belongs to a DBCluster
// NOTE: Unlike in preUpdate we are using spec here because status is not yet available.
if cr.Spec.ForProvider.DBClusterIdentifier == nil {
if len(cr.Spec.ForProvider.VPCSecurityGroupIDs) > 0 {
obj.VpcSecurityGroupIds = make([]*string, len(cr.Spec.ForProvider.VPCSecurityGroupIDs))
for i, v := range cr.Spec.ForProvider.VPCSecurityGroupIDs {
obj.VpcSecurityGroupIds[i] = pointer.ToOrNilIfZeroValue(v)
}
}
} else {
obj.VpcSecurityGroupIds = nil
}

if len(cr.Spec.ForProvider.DBSecurityGroups) > 0 {
obj.DBSecurityGroups = make([]*string, len(cr.Spec.ForProvider.DBSecurityGroups))
for i, v := range cr.Spec.ForProvider.DBSecurityGroups {
Expand Down Expand Up @@ -233,11 +241,16 @@ func (e *custom) preUpdate(ctx context.Context, cr *svcapitypes.DBInstance, obj
}
obj.MasterUserPassword = pointer.ToOrNilIfZeroValue(desiredPassword)

if cr.Spec.ForProvider.VPCSecurityGroupIDs != nil {
obj.VpcSecurityGroupIds = make([]*string, len(cr.Spec.ForProvider.VPCSecurityGroupIDs))
for i, v := range cr.Spec.ForProvider.VPCSecurityGroupIDs {
obj.VpcSecurityGroupIds[i] = pointer.ToOrNilIfZeroValue(v)
// VpcSecurityGroupIds cannot be set on an instance that belongs to a DBCluster
if cr.Status.AtProvider.DBClusterIdentifier == nil {
if cr.Spec.ForProvider.VPCSecurityGroupIDs != nil {
obj.VpcSecurityGroupIds = make([]*string, len(cr.Spec.ForProvider.VPCSecurityGroupIDs))
for i, v := range cr.Spec.ForProvider.VPCSecurityGroupIDs {
obj.VpcSecurityGroupIds[i] = pointer.ToOrNilIfZeroValue(v)
}
}
} else {
obj.VpcSecurityGroupIds = nil
}

return nil
Expand Down Expand Up @@ -318,6 +331,8 @@ func (e *custom) postObserve(ctx context.Context, cr *svcapitypes.DBInstance, re
return obs, err
}

cr.Spec.ForProvider.DBClusterIdentifier = resp.DBInstances[0].DBClusterIdentifier

switch pointer.StringValue(resp.DBInstances[0].DBInstanceStatus) {
case "available", "configuring-enhanced-monitoring", "storage-optimization", "backing-up":
cr.SetConditions(xpv1.Available())
Expand Down Expand Up @@ -607,6 +622,11 @@ func compareTimeRanges(format string, expectedWindow *string, actualWindow *stri
}

func areVPCSecurityGroupIDsUpToDate(cr *svcapitypes.DBInstance, out *svcsdk.DBInstance) bool {
// VPCSecurityGroupIDs is ignored for instances that belong to a cluster.
if out.DBClusterIdentifier != nil {
return true
}

desiredIDs := cr.Spec.ForProvider.VPCSecurityGroupIDs

// if user is fine with default SG or lets DBCluster manage it
Expand Down
Loading