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

feat: implement AWS RDS DB ParameterGroups #630

Merged
merged 1 commit into from
Apr 14, 2021
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
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