-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.sample
81 lines (74 loc) · 1.36 KB
/
variables.sample
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
#S3
variable "single-bucket" {
description = "S3 bucket for artifact repository"
default = "bucket-name"
}
#account
variable "accounts" {
default = [
"arn:aws:iam::aws-id:root",
"arn:aws:iam::aws-d:root",
]
}
# iam-user-shared-reader
variable "iam-user-s3-reader" {
description = "iam user for S3 read access "
default = ""
}
variable "policy-s3-reader" {
default = ""
}
# role-reader-developers
variable "role-developers-get-credentials" {
default = ""
}
variable "policy-get-credentials-parameter-store" {
default = ""
}
variable "resource-ssm-credentials" {
default = ""
}
# role-lambda
variable "lambda-role-name" {
default = ""
}
variable "policy-store-credentials-name" {
default = ""
}
variable "policy-rotate-keys-name" {
default = ""
}
#provider
variable "aws-region" {
default = ""
}
variable "aws-access-key" {
default = ""
}
variable "aws-secret-key" {
default = ""
}
variable "aws-version" {
default = ""
}
# lambda function
variable "region" {
description = "define which region your AWS account is"
default = ""
}
variable "lambda-function-name" {
default = ""
}
variable "lambda-time-out" {
default = ""
}
variable "lambda-runtime" {
default = ""
}
# cloud-watch-event
variable "cloud-watch-rule-name" {
default = ""
}
variable "cloud-watch-cron" {
default = ""
}