variables.tf 575 B

12345678910111213141516171819202122232425
  1. variable "addresses" {
  2. type = "list"
  3. default = []
  4. description = "IP addresses to assign to the boostrap node."
  5. }
  6. variable "base_volume_id" {
  7. type = "string"
  8. description = "The ID of the base volume for the bootstrap node."
  9. }
  10. variable "cluster_name" {
  11. type = "string"
  12. description = "The name of the cluster."
  13. }
  14. variable "network_id" {
  15. type = "string"
  16. description = "The ID of a network resource containing the bootstrap node's addresses."
  17. }
  18. variable "ssh_key" {
  19. type = "string"
  20. description = "ssh public key"
  21. }