# Specify default values for variables defined in variables.tf

############
# provider #
############
account_id = "123456789012"

region = "us-east-1"

#############
# top level #
#############

cloudwatch_event_rule_name = "{{ name }}"

cloudwatch_event_rule_description = "Managed by Terraform Plus"

cloudwatch_event_rule_is_enabled = true

cloudwatch_event_rule_event_pattern = <<PATTERN
{
"detail-type": [
  "AWS Console Sign In via CloudTrail"
]
}
PATTERN
