-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
50 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
variable cloud_id { | ||
description = "Cloud" | ||
} | ||
variable folder_id { | ||
description = "Folder" | ||
} | ||
variable zone { | ||
description = "Zone" | ||
default = "ru-central1-a" | ||
} | ||
variable region_id { | ||
description = "region" | ||
default = "ru-central1" | ||
} | ||
variable public_key_path { | ||
description = "Path to the public key used for ssh access" | ||
} | ||
variable image_id { | ||
description = "Disk image" | ||
} | ||
variable subnet_id { | ||
description = "Subnet" | ||
} | ||
variable service_account_key_file { | ||
description = "key .json" | ||
} | ||
variable private_key_path { | ||
description = "path to private key" | ||
} | ||
variable instances { | ||
description = "count instances" | ||
default = 1 | ||
} | ||
variable app_disk_image { | ||
description = "disk image for reddit app" | ||
default = "reddit-app-base" | ||
} | ||
variable db_disk_image { | ||
description = "disk image for mongodb" | ||
default = "reddit-db-base" | ||
} | ||
variable access_key { | ||
description = "key id" | ||
} | ||
variable secret_key { | ||
description = "secret key" | ||
} | ||
variable bucket_name { | ||
description = "bucket name" | ||
} |