Questions tagged [aws-backup]

62 questions
0
votes
1 answer

terraform import aws_backup_selection error unexpected ID format

I am importing aws_backup_selection resource but I receive an error: Error: unexpected format of ID ("56XXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX"), expected | I am importing the resource with the following command: terraform import…
0
votes
0 answers

How to search AWS Backup by tags?

I have several tens of thousands of EBS Cycle manager backups and the same amount of AWS Backups. On the EC2 Snapshots page i can see the name of what was backuped up, "fe-server-cool-beans". So it's very easy to find what i need. On AWS Backups, it…
0
votes
1 answer

Insufficient privilege when running AWS Backup start_copy_job fumction

I'm trying to start a copy job to copy RDS snapshot from one backup vault to another backup vault in diferent region using lambda function but getting error with this message: An error occurred (AccessDeniedException) when calling the StartCopyJob…
NewGuy
  • 49
  • 1
  • 9
0
votes
1 answer

Permission required for create aws backup vault

TableBackupVault: Type: AWS::Backup::BackupVault Properties: BackupVaultName: tabel-vault What permission are required for creating backup vault? I tried these - Sid: Backup Effect: Allow Action: …
rxyz
  • 143
  • 1
  • 7
0
votes
2 answers

AWS Backup copy job costs when existing snapshot exists

I have been trying to contact AWS and look for information in their own knowledge articles but haven't been successful. I'm trying to figure out how the billing works for AWS Backup. Let's say I have a 100gb bucket and I back it up daily with a…
Zucchini
  • 459
  • 6
  • 16
0
votes
0 answers

AWS BACKUP vaults for cross account in Terraform

I Need some help in configuring AWS backup vaults in multiple AWS accounts using terraform. I'm able to create backup vaults in 2 accounts with specific plan and schedule. but i cant see the backedup data on the destination account. Here's the code…
john
  • 1
  • 1
0
votes
1 answer

AWS SCP , enforce tagging for EC2 and allow specific AWS Backup service role to restore

I have a tag enforcement scp that deny ec2 creation without CodeDomaine Tag except for AWS Backup service: "Statement": [ { "Sid": "DenyEC2CreationSCP1", "Effect": "Deny", "Action": [ "ec2:RunInstances" ], …
0
votes
0 answers

AWS Backup - How to get the cluster id value

Here's the scenario, after AWS Backup completes backup cluster aurora RDS, it will send 1 event message to SNS topic. Finally, I'll use lambda to get cluster information. AWS Backup job completed -> Event message -> SNS topic -> trigger lambda The…
user18890347
0
votes
1 answer

Deleting Snapshots managed by Backup using boto3

I wanted to delete the old snapshots from my aws account i used the following code but i am getting an error can you please suggest any code changes this is the code import json import boto3 import datetime client =…
0
votes
2 answers

AWS Backup for s3 - Copy to another account

I'm attempting to use AWS backup to send an s3 backup from one account to another. I've setup all the requirements and backups in my source account are working fine. The issue comes when copying to another account. Looking at this guide there is no…
0
votes
1 answer

AWS Backup DynamoDB billing

I'd like to understand better the billing composition regardless of AWS Backup on DynamoDB resources since I got an unexpected increase in my billing. I'm aware of AWS Backup billing itself thanks to the documentation, anyway, when I access the…
0
votes
2 answers

Where does the AWS EFS backup get stored?

I am backing up my EFS using AWS Backup service. Wanted to know where the Backup is actually stored? Is this getting stored in the EFS itself or not? I noticed a huge hike in the data stored in the EFS so wanted to know if the automated backup can…
0
votes
1 answer

Can I limit the results of an aws rds snapshot query to a certain timeframe?

I have used the following query to find all rds snapshots, that were created after a certain date: aws rds describe-db-snapshots --db-instance-identifier db-identifier --snapshot-type awsbackup --query…
Lucky
  • 158
  • 1
  • 2
  • 11
0
votes
1 answer

How do I send AWS Backup events to OpsGenie via Eventbridge?

I have a requirement to send AWS Backup events - specifically failed backups and backups that had Windows VSS fail on backup to a centralized Opsgenie alerting system. AWS directed us to use EventBridge to parse the JSON object produced by AWS…
BPS
  • 607
  • 8
  • 29
0
votes
2 answers

Recover EFS with aws start-restore-job in OneZone

I didn't find the AvailabilityZoneName parameter in the startRestoreJob SDK https://docs.aws.amazon.com/AWSJavaScriptSDK/latest/AWS/Backup.html#startRestoreJob-property For this reason, when I restore the snapshot, it is created as REGIONAL. The AWS…
horeca2
  • 21
  • 3