forked from cytopia/terraform-aws-iam
-
Notifications
You must be signed in to change notification settings - Fork 0
/
terraform.tfvars
64 lines (63 loc) · 1.33 KB
/
terraform.tfvars
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
policies = [
{
name = "billing-ro"
path = "/assume/"
desc = "Provides read-only access to billing"
file = "data/billing-ro.json"
vars = {}
},
]
groups = [
{
name = "GRP-CUSTOM-POLICY"
path = null
policies = ["billing-ro"]
policy_arns = []
inline_policies = []
},
{
name = "GRP-POLICY-ARN"
path = null
policies = []
policy_arns = ["arn:aws:iam::aws:policy/PowerUserAccess"]
inline_policies = []
},
{
name = "GRP-INLINE-POLICY"
path = null
policies = []
policy_arns = []
inline_policies = [
{
name = "rds-authenticate"
file = "data/rds-authenticate.json.tmpl"
vars = {
aws_account_id = "1234567890"
}
}
]
},
{
name = "GRP-MULTIPLE-POLICIES"
path = null
policies = []
policy_arns = [
"arn:aws:iam::aws:policy/PowerUserAccess",
"arn:aws:iam::aws:policy/AmazonEC2FullAccess",
]
inline_policies = [
{
name = "rds-authenticate"
file = "data/rds-authenticate.json.tmpl"
vars = {
aws_account_id = "1234567890"
}
},
{
name = "billing-ro"
file = "data/billing-ro.json"
vars = {}
}
]
},
]