AWS backup, always getting AccessDeniedException

Hey, im new in Terraform and im trying to create some simple backup plans, but i always get error creating Backup Plan: AccessDeniedException: status code: 403, request id: 64efecde. Maybe the problem is the vault, but i dont know how to fix. Down below is the code:

provider “aws”{
region = “us-east-1”
shared_credentials_file = “/path/credentials”
profile = “joao.leao.lis”
}

module “aws_backup_example” {

source = “…/…/…/terraform-aws-backup”

Plan

plan_name = “plan”

rules = [
{
name = “rule-1”
schedule = “cron(0 15 10 ? * *)”
target_vault_name = “Default”
start_window = 30
completion_window = 360
lifecycle = {
cold_storage_after = 0
delete_after = 30
},
recovery_point_tags = {
Environment = “production”
}
},
]

selections = [
{
name = “selection1”
resources = [“arn:table/Cars”]
selection_tag = {}
},
]

tags = {
Owner = “backup team”
Environment = “production”
Terraform = true
}
}