Skip to content

Commit

Permalink
Merge pull request #630 from Dkaykay/feat/RDS-DBParameterGroups
Browse files Browse the repository at this point in the history
feat: implement AWS RDS DB ParameterGroups
  • Loading branch information
muvaf authored Apr 14, 2021
2 parents a548bcb + 8e580ea commit cbd5081
Show file tree
Hide file tree
Showing 13 changed files with 1,151 additions and 18 deletions.
7 changes: 7 additions & 0 deletions apis/rds/v1alpha1/custom_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,13 @@ package v1alpha1

import xpv1 "github.com/crossplane/crossplane-runtime/apis/common/v1"

// CustomDBParameterGroupParameters are custom parameters for DBParameterGroup
type CustomDBParameterGroupParameters struct {
// A list of parameters to associate with this DB parameter group
// +optional
Parameters []Parameter `json:"parameters,omitempty"`
}

// CustomDBClusterParameters are custom parameters for DBCluster
type CustomDBClusterParameters struct {

Expand Down
5 changes: 4 additions & 1 deletion apis/rds/v1alpha1/generator-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,17 @@ ignore:
- CreateDBClusterInput.VpcSecurityGroupIds
- ModifyDBClusterInput.VpcSecurityGroupIds
- DBCluster.PendingModifiedValues
- CreateDBParameterGroupInput.DBParameterGroupName
- DeleteDBParameterGroupInput.DBParameterGroupName
- ModifyDBParameterGroupInput.DBParameterGroupName
- DescribeDBParameterGroupsInput.DBParameterGroupName
resource_names:
- DBClusterEndpoint
- CustomAvailabilityZone
- DBClusterParameterGroup
- DBClusterSnapshot
- DBInstance
- DBInstanceReadReplica
- DBParameterGroup
- DBProxy
- DBSecurityGroup
- DBSnapshot
Expand Down
107 changes: 107 additions & 0 deletions apis/rds/v1alpha1/zz_db_parameter_group.go

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

Loading

0 comments on commit cbd5081

Please sign in to comment.