This repository has been archived by the owner on Jul 23, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
23 changed files
with
863 additions
and
126 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,35 @@ | ||
variable "image_source" { | ||
description = "The URL of the OS disk image" | ||
variable "master_count" { | ||
type = string | ||
description = "Number of masters" | ||
default = 3 | ||
} | ||
|
||
variable "image_checksum" { | ||
type = string | ||
description = "The URL or checksum value of the image" | ||
} | ||
|
||
variable "root_gb" { | ||
type = string | ||
description = "Size of the root disk" | ||
} | ||
|
||
variable "ignition" { | ||
type = string | ||
description = "The content of the master ignition file" | ||
} | ||
|
||
variable "master_nodes" { | ||
type = map(map(string)) | ||
description = "Master bare metal node details" | ||
variable "hosts" { | ||
type = list(map(string)) | ||
description = "Hardware details for hosts" | ||
} | ||
|
||
variable "properties" { | ||
type = map(map(string)) | ||
description = "Master bare metal properties" | ||
type = list(map(string)) | ||
description = "Properties for hosts" | ||
} | ||
|
||
variable "root_devices" { | ||
type = map(map(string)) | ||
description = "Master root device configuration" | ||
type = list(map(string)) | ||
description = "Root devices for hosts" | ||
} | ||
|
||
variable "driver_infos" { | ||
type = map(map(string)) | ||
description = "Master driver info" | ||
type = list(map(string)) | ||
description = "BMC information for hosts" | ||
} | ||
|
||
variable "instance_infos" { | ||
type = list(map(string)) | ||
description = "Instance information for hosts" | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.