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.

35 lines
915 B

  1. # your Kubernetes cluster name here
  2. cluster_name = "mycluster"
  3. # Your Equinix Metal project ID. See https://metal.equinix.com/developers/docs/accounts/
  4. equinix_metal_project_id = "Example-Project-Id"
  5. # The public SSH key to be uploaded into authorized_keys in bare metal Equinix Metal nodes provisioned
  6. # leave this value blank if the public key is already setup in the Equinix Metal project
  7. # Terraform will complain if the public key is setup in Equinix Metal
  8. public_key_path = "~/.ssh/id_rsa.pub"
  9. # Equinix interconnected bare metal across our global metros.
  10. metro = "da"
  11. # operating_system
  12. operating_system = "ubuntu_22_04"
  13. # standalone etcds
  14. number_of_etcd = 0
  15. plan_etcd = "t1.small.x86"
  16. # masters
  17. number_of_k8s_masters = 1
  18. number_of_k8s_masters_no_etcd = 0
  19. plan_k8s_masters = "t1.small.x86"
  20. plan_k8s_masters_no_etcd = "t1.small.x86"
  21. # nodes
  22. number_of_k8s_nodes = 2
  23. plan_k8s_nodes = "t1.small.x86"