-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
45 lines (36 loc) · 1.23 KB
/
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
41
42
43
44
45
##############################################################################
# Account Variables
##############################################################################
variable "region" {
description = "The region to which to deploy the VPC"
type = string
}
variable "prefix" {
description = "The prefix that you would like to prepend to your resources"
type = string
}
variable "tags" {
description = "List of Tags for the resource created"
type = list(string)
default = null
}
variable "resource_group_id" {
description = "Resource group ID for App ID instance"
type = string
default = null
}
##############################################################################
##############################################################################
# App ID Variables
##############################################################################
variable "use_data" {
description = "Get App ID information from data."
type = bool
default = false
}
variable "appid_name" {
description = "App ID name. Use only if `use_data` is true."
type = string
default = null
}
##############################################################################