You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

83 lines
956 B

  1. variable "cluster_name" {
  2. }
  3. variable "number_of_k8s_masters" {
  4. }
  5. variable "number_of_k8s_masters_no_etcd" {
  6. }
  7. variable "number_of_etcd" {
  8. }
  9. variable "number_of_k8s_masters_no_floating_ip" {
  10. }
  11. variable "number_of_k8s_masters_no_floating_ip_no_etcd" {
  12. }
  13. variable "number_of_k8s_nodes" {
  14. }
  15. variable "number_of_k8s_nodes_no_floating_ip" {
  16. }
  17. variable "number_of_bastions" {
  18. }
  19. variable "number_of_gfs_nodes_no_floating_ip" {
  20. }
  21. variable "gfs_volume_size_in_gb" {
  22. }
  23. variable "public_key_path" {
  24. }
  25. variable "image" {
  26. }
  27. variable "image_gfs" {
  28. }
  29. variable "ssh_user" {
  30. }
  31. variable "ssh_user_gfs" {
  32. }
  33. variable "flavor_k8s_master" {
  34. }
  35. variable "flavor_k8s_node" {
  36. }
  37. variable "flavor_etcd" {
  38. }
  39. variable "flavor_gfs_node" {
  40. }
  41. variable "network_name" {
  42. }
  43. variable "flavor_bastion" {
  44. }
  45. variable "network_id"{
  46. }
  47. variable "k8s_master_fips" {
  48. type = "list"
  49. }
  50. variable "k8s_node_fips" {
  51. type = "list"
  52. }
  53. variable "bastion_fips" {
  54. type = "list"
  55. }