aboutsummaryrefslogtreecommitdiff
blob: 667b41b99bcafb60ab881e29d5abf2e30b09acd2 (plain) (blame)
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
29
30
31
32
33
34
35
36
37
provider "aws" {
  region = var.region
}

variable "name" {
  description = "Name of the service. It will be used to name EC2, and RDS instances."
  default     = "jinwei-me"
}

variable "region" {
  default     = "us-west-2"
  description = "AWS region"
}

variable "rss_db_name" {
  default = "rss"
}

variable "rss_db_user" {
  default = "rss"
}

variable "rss_site_url" {
  default = "https://feed.jinwei.me"
}

variable "rss_tgbot_token" {
  description = "Telegram bot token for rssbot"
  type        = string
  sensitive   = true
}

variable "tg_bot_version" {
  description = "Telegram rss bot version, from https://github.com/iovxw/rssbot/releases"
  default = "v2.0.0-alpha.11"
  type = string
}
Powered by cgit v1.2.3 (git 2.41.0)