-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.tf
More file actions
21 lines (21 loc) · 790 Bytes
/
variables.tf
File metadata and controls
21 lines (21 loc) · 790 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
variable "project_id" {
description = "Your Google Cloud project ID"
}
variable "zone" {
default = "us-central1-a"
description = "The zone where you want your infrastructure to be deployed to"
}
variable "image_id" {
default = "debian-10-buster-v20200910"
description = "The ID of the image that you want to use for the boot disk"
}
variable "tezos_ssh_user" {
description = "The username that you want to use to ssh into the instance with. This is the user that Ansible will use to deploy playbooks with"
}
variable "tezos_ssh_user_public_key" {
description = "The public key location for the ssh user"
}
# Uncomment this section if you skipped the Packer part
# variable "startup_script_file" {
# description = "The startup script for the GCP instance"
# }