12345678910111213141516171819202122232425 |
- variable "project" {}
- variable "credentials_file" {}
- variable "region" {
- default = "us-east1"
- }
- variable "zone" {
- default = "us-east1-b"
- }
- variable "Signature" {
- description = "The signature of the edge software"
- }
- variable "ManagerIp" {
- description = "The IP address of the manager"
- }
- variable "ssh_key" {
- description = "The public key for ssh"
- }
- variable "ssh_public_key_file" {
- description = "The file containing the public key for ssh"
- }
|