forked from cloudposse/terraform-aws-ecs-web-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
26 lines (22 loc) · 909 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
variable "region" {
type = string
description = "AWS Region"
default = "us-east-2"
}
variable "default_container_image" {
type = string
description = "The default container image to use in container definition"
default = "nginxdemos/hello:latest"
}
variable "certificate_arn" {
type = string
description = "SSL certificate ARN for ALB HTTPS endpoints"
}
variable "google_oidc_client_id" {
type = string
description = "Google OIDC Client ID. Use this URL to create a Google OAuth 2.0 Client and obtain the Client ID and Client Secret: https://console.developers.google.com/apis/credentials"
}
variable "google_oidc_client_secret" {
type = string
description = "Google OIDC Client Secret. Use this URL to create a Google OAuth 2.0 Client and obtain the Client ID and Client Secret: https://console.developers.google.com/apis/credentials"
}