-
Notifications
You must be signed in to change notification settings - Fork 9.2k
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
rds: export db snapshot data to S3 #16181
Comments
Hi , Do we have any update in which version this enhancement can be available? |
Any update on the following? |
any update |
Any update? |
any update |
Since this aligns with the ExportTask API's a resource could look something like the following (to be paired with the resource "aws_db_export_task" "example" {
export_task_identifier = "my_snapshot_export"
source_arn = "arn:aws:rds:AWS_Region:123456789012:snapshot:snapshot_name"
s3_bucket_name = "my_export_bucket"
iam_role_arn = "iam_role" # actually an IAM role name
kms_key_id = "my_key"
} API Docs: |
Edit: After researching the behavior of these API's, this is a borderline terraform resource candidate due to the absence of a traditional CRUD workflow. Once started, export tasks run until completion or failure and cannot be deleted (only cancelled). There are no If the decision is made to move forward, a write-up for this proposed resource is documented below. Workflow BehaviorThe proposed behavior on read, update, and delete is as follows:
API ImplementationsExport TaskPotential Terraform FeaturesNew Resource:
|
This functionality has been released in v4.51.0 of the Terraform AWS Provider. Please see the Terraform documentation on provider versioning or reach out if you need any assistance upgrading. For further feature requests or bug reports with this functionality, please create a new GitHub issue following the template. Thank you! |
I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. |
Community Note
Description
It would be great if the provider allowed for exporting db snapshot data to S3 as documented here:
New or Affected Resource(s)
The text was updated successfully, but these errors were encountered: