variables.tf 458 B

12345678910111213141516171819202122232425
  1. variable "project" {}
  2. variable "credentials_file" {}
  3. variable "region" {
  4. default = "us-east1"
  5. }
  6. variable "zone" {
  7. default = "us-east1-b"
  8. }
  9. variable "Signature" {
  10. description = "The signature of the edge software"
  11. }
  12. variable "ManagerIp" {
  13. description = "The IP address of the manager"
  14. }
  15. variable "ssh_key" {
  16. description = "The public key for ssh"
  17. }
  18. variable "ssh_public_key_file" {
  19. description = "The file containing the public key for ssh"
  20. }