source: installer/terraform/variables.tf

lgromero-new-oglive
Last change on this file was 65d6383, checked in by Natalia Serrano <natalia.serrano@…>, 17 months ago

Fix typo

  • Property mode set to 100644
File size: 390 bytes
Line 
1variable "virtual_network" {
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}
21
22variable "ogversion" {
23    type         = string
24    default      = "test"
25}
Note: See TracBrowser for help on using the repository browser.