-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvariables.tf
64 lines (54 loc) · 1.63 KB
/
variables.tf
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
##############################################################
#variables for alicloud_ram_role
##############################################################
variable "name" {
description = "The specification of module name."
type = string
default = ""
}
variable "document" {
description = "Authorization strategy of the RAM role."
type = string
default = ""
}
variable "ram_role_description" {
description = "The specification of module ram role description."
type = string
default = ""
}
variable "force" {
description = "This parameter is used for resource destroy"
type = bool
default = false
}
##############################################################
#variables for alicloud_ram_role_policy_attachment
##############################################################
variable "policy_name" {
description = "The specification of module ram role description."
type = string
default = ""
}
variable "policy_type" {
description = "The specification of module policy type."
type = string
default = "System"
}
##############################################################
#variables for alicloud_fc_service
##############################################################
variable "fc_service_description" {
description = "The specification of module fc service description."
type = string
default = ""
}
variable "logstore" {
description = "The specification of logstore."
type = string
default = ""
}
variable "project" {
description = "The specification of project."
type = string
default = ""
}