Skip to content

[Enhancement] Adding parameters to the datasource aws_db_parameter_group #42765

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

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
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
Prev Previous commit
Error message update
  • Loading branch information
michalschott committed May 27, 2025
commit 186d57a9cae79eed2cff04aa92544f296a79e355
2 changes: 1 addition & 1 deletion internal/service/rds/parameter_group_data_source.go
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ func dataSourceParameterGroupRead(ctx context.Context, d *schema.ResourceData, m
}
}
if !paramFound {
log.Printf("[DEBUG] Not persisting %s to state, as its source is %q and it isn't in the config", aws.ToString(parameter.ParameterName), aws.ToString(parameter.Source))
log.Printf("[DEBUG] Not getting %s, as its source is %q and it isn't in the config", aws.ToString(parameter.ParameterName), aws.ToString(parameter.Source))
}
}
}
Expand Down
Loading