Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
briskt committed Aug 27, 2024
1 parent 47db1e9 commit 411b6cb
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions test/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ module "minimal" {
}

module "full" {
source = "../"
app_name = "full"
app_env = "test"
source_arns = ["arn:aws:rds:us-east-1:123456789012:db:my-db"]
backup_schedule = "cron(11 1 * * ? *)"
notification_events = ["BACKUP_JOB_STARTED", "BACKUP_JOB_COMPLETED", "BACKUP_JOB_FAILED", "RESTORE_JOB_COMPLETED"]
sns_topic_arn = "arn:aws:sns:us-east-1:123456789012:backup-vault-events"
source = "../"
app_name = "full"
app_env = "test"
source_arns = ["arn:aws:rds:us-east-1:123456789012:db:my-db"]
backup_cron_schedule = "11 1 * * ? *"
notification_events = ["BACKUP_JOB_STARTED", "BACKUP_JOB_COMPLETED", "BACKUP_JOB_FAILED", "RESTORE_JOB_COMPLETED"]
sns_topic_arn = "arn:aws:sns:us-east-1:123456789012:backup-vault-events"
}

provider "aws" {
Expand Down

0 comments on commit 411b6cb

Please sign in to comment.