source: installer/terraform/variables.tf @ 33003df

Last change on this file since 33003df was 915580e, checked in by Nicolas Arenas <nicolas.arenas@…>, 19 months ago

Merge branch 'terraform-clients'

  • Property mode set to 100644
File size: 312 bytes
Line 
1variable "virtual_netowrk" {
2    type = string
3    default = "test"
4}
5
6variable "mac_prefix" {
7    type = string
8    default = "00:00:00:00:00"
9}
10
11variable "num_clients" {
12    type = string
13    default = 1
14}
15
16variable "vi_password" {
17    type         = string
18    sensitive    = true
19    default      = ""
20}
Note: See TracBrowser for help on using the repository browser.