-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
69 lines (58 loc) · 1.84 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
variable "resource_group_name" {
type = string
description = "Name of the resource group to deploy the App Service to."
}
variable "resource_group_location" {
type = string
description = "Location of the resource group to deploy the App Service to."
}
variable "storage_account_name" {
type = string
default = null
description = "Specifies the name of the storage account. Only lowercase Alphanumeric characters allowed. Changing this forces a new resource to be created. This must be unique across the entire Azure service, not just within the resource group."
}
variable "storage_account_tier" {
type = string
default = "Standard"
description = "Defines the Tier to use for this storage account. Valid options are Standard and Premium. For BlockBlobStorage and FileStorage accounts only Premium is valid."
}
variable "custom_sub_domain_name" {
type = string
description = "Subdomain to use, i.e.: use myapp as in myapp.contoso.com"
default = null
}
variable "storage_account_replication_type" {
type = string
default = "GRS"
description = "Defines the type of replication to use for this storage account. Valid options are LRS, GRS, RAGRS, ZRS, GZRS and RAGZRS."
}
variable "cdn_profile_sku" {
type = string
default = "Standard_Microsoft"
}
variable "parent_dns_zone_name" {
type = string
default = null
}
variable "parent_dns_zone_resource_group_name" {
type = string
default = null
}
variable "index_document" {
type = string
default = "index.html"
}
variable "error_404_document" {
type = string
default = "404.html"
}
variable "url_rewrites" {
type = list(object({
name = string
request_url = string
source_pattern = string
destination = string
}))
description = "List of URL rewrites."
default = []
}