-
Notifications
You must be signed in to change notification settings - Fork 30
/
variables.tf
42 lines (36 loc) · 1.68 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
/*
Set the the below environment varaiables to set the variable values.
------------------------------------------------------------------------------------
| No | Variable Name | Value |
------------------------------------------------------------------------------------
| 1 | TF_VAR_username | <oneview_user_name> |
------------------------------------------------------------------------------------
| 2 | TF_VAR_password | <oneview_password |
------------------------------------------------------------------------------------
| 3 | TF_VAR_endpoint | <oneview_ip> |
------------------------------------------------------------------------------------
| 4 | TF_VAR_ssl_enabled | <false> |
------------------------------------------------------------------------------------
| 5 | TF_VAR_api_version | <api_version> |
------------------------------------------------------------------------------------
*/
variable "username" {
type = string
description = "Oneview Appliance Username"
}
variable "password" {
type = string
description = "Oneview Appliance Password"
}
variable "endpoint" {
type = string
description = "Oneview Appliance IP Address"
}
variable "api_version"{
type = number
description = "Oneview Appliance REST API Version"
}
variable "ssl_enabled" {
default = false
description = "SSL Enabled"
}