forked from proceduretech/terraform-amplify-nextjs-ssr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
40 lines (31 loc) · 778 Bytes
/
variables.tf
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
38
39
40
# Configuration Variables
variable "environment" {
description = "Environment for the resources"
}
variable "profile" {
description = "AWS profile"
}
variable "project_name" {
description = "Project name"
}
variable "github_token_for_frontend" {
description = "Github personal access token for amplify to access the frontend repo"
}
variable "state_bucket" {
description = "name of the s3 bucket to store s3 state in"
}
variable "state_bucket_key" {
description = "key in state bucket"
}
variable "region" {
description = "AWS region"
}
variable "access_key" {
description = "AWS access key"
}
variable "secret_key" {
description = "Aws secret access key"
}
variable "github_repository" {
description = "http link of the github repo"
}