-
Notifications
You must be signed in to change notification settings - Fork 1
/
vars.yml
39 lines (30 loc) · 872 Bytes
/
vars.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
resource_name: "aws_cloudtrail_trail"
class_name: "AwsCloudTrailTrail"
# True if the resource looks are singular element like aws_cloudtrail_trail
# False if the resource looks are multiple elements like aws_cloudtrail_trails
singular: true
# true if empty params are ok
empty_param_ok: false
# true if scalar params are ok
scalar_param_ok: true
param_name: "trail_name"
assert_param: "test-trail-1"
refute_param: "non-existant"
properties: [
"s3_bucket_name",
"trail_arn",
"cloud_watch_logs_role_arn",
"cloud_watch_logs_log_group_arn",
"kms_key_id",
"home_region"
]
#specify the matcher methods without '?'
# examples
# encrypted? => encrypted
# attached_to_user?('test-user') => attached_to_user
# params for the method in the above line has to be manually added
matchers: [
"encrypted",
"multi_region_trail",
"log_file_validation_enabled",
]