-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.tf
More file actions
28 lines (24 loc) · 768 Bytes
/
variables.tf
File metadata and controls
28 lines (24 loc) · 768 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
variable "project" {
description = "Project Name"
default = "newsbot-392213"
}
variable "region" {
description = "Region for GCP resources. Choose as per your location: https://cloud.google.com/about/locations"
default = "us-west1"
type = string
}
variable "deployment_name" {
description = "The name of this particular deployment, will get added as a prefix to most resources."
default = "newsbot"
type = string
}
variable "mastodon_access_token" {
type = string
description = "Access token for Mastodon"
sensitive = true
}
variable "mastodon_id" {
type = string
description = "Mastodon username"
default = "110678067712784209" #i.e., '@username@mastodon.social' or '123456789123456789'
}