variables.tf 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365
  1. variable "name" {
  2. description = "Name of the fastly service (defaults to hostname)."
  3. type = string
  4. default = ""
  5. }
  6. variable "hostname" {
  7. description = "Hostname the service points to."
  8. type = string
  9. }
  10. variable "domains" {
  11. description = "Additional domains to assign to this service"
  12. type = list(string)
  13. default = []
  14. }
  15. variable "ssl_hostname" {
  16. description = "Hostname to use for SSL verification (if different from 'hostname')."
  17. type = string
  18. default = ""
  19. }
  20. variable "default_ttl" {
  21. description = "The default Time-to-live (TTL) for requests"
  22. type = number
  23. default = 0
  24. }
  25. variable "backend_name" {
  26. description = "Optional name for the backend."
  27. type = string
  28. default = ""
  29. }
  30. variable "backend_address" {
  31. description = "Address to use for connecting to the backend. Can be a hostname or an IP address."
  32. type = string
  33. }
  34. variable "backend_port" {
  35. description = "The port number on which the Backend responds."
  36. type = number
  37. default = 443
  38. }
  39. variable "backend_ssl_check" {
  40. description = "Be strict about checking SSL certs when connecting to the backend."
  41. type = bool
  42. default = true
  43. }
  44. variable "backend_ca_cert" {
  45. description = "CA cert to use when connecting to the backend."
  46. type = string
  47. sensitive = true
  48. }
  49. variable "backend_first_byte_timeout" {
  50. description = "How long to wait for the first bytes in milliseconds."
  51. type = number
  52. default = 15000
  53. }
  54. variable "backend_between_bytes_timeout" {
  55. description = "How long to wait between bytes in milliseconds."
  56. type = number
  57. default = 10000
  58. }
  59. variable "max_conn" {
  60. description = "Maximum number of connections for the Backend."
  61. type = number
  62. default = 500
  63. }
  64. variable "min_tls_version" {
  65. description = "Minimum allowed TLS version on SSL connections to the backend."
  66. type = string
  67. default = "1.2"
  68. }
  69. variable "use_ssl" {
  70. description = "Whether or not to use SSL to reach the Backend."
  71. type = bool
  72. default = true
  73. }
  74. variable "shield_region" {
  75. description = "Which Fastly shield region to use. Should correspond with the shield code."
  76. type = string
  77. }
  78. variable "media_backend" {
  79. description = "Additional backend to use for service media files"
  80. type = object({
  81. address = string
  82. name = optional(string, "")
  83. condition = optional(string, "")
  84. condition_name = optional(string, "Media backend condition")
  85. ssl_check = optional(bool, true)
  86. ssl_hostname = optional(string, "")
  87. })
  88. default = { address = "" }
  89. }
  90. variable "healthcheck_host" {
  91. description = "Host to ping for healthcheck. Defaults to hostname."
  92. type = string
  93. default = ""
  94. }
  95. variable "healthcheck_name" {
  96. description = "Optional name for the healthcheck."
  97. type = string
  98. default = ""
  99. }
  100. variable "healthcheck_path" {
  101. description = "URL to use when doing a healthcheck."
  102. type = string
  103. default = "/health"
  104. }
  105. variable "healthcheck_method" {
  106. description = "HTTP method to use when doing a healthcheck."
  107. type = string
  108. default = "HEAD"
  109. validation {
  110. condition = contains(["CONNECT", "DELETE", "GET", "HEAD", "OPTIONS", "POST", "PUT", "TRACE"], var.healthcheck_method)
  111. error_message = "Healthcheck method must be a valid HTTP method"
  112. }
  113. }
  114. variable "force_tls_hsts" {
  115. description = "Force TLS and HTTP Strict Transport Security (HSTS) to ensure that every request is secure."
  116. type = bool
  117. default = true
  118. }
  119. variable "hsts_duration" {
  120. description = "Number of seconds for the client to remember only to use HTTPS."
  121. type = number
  122. default = 31557600
  123. }
  124. variable "healthcheck_expected_response" {
  125. description = "Response to expect from a healthy endpoint."
  126. type = number
  127. default = 200
  128. }
  129. variable "datadog" {
  130. description = "Whether to send logging info to Datadog"
  131. type = bool
  132. default = false
  133. }
  134. variable "datadog_token" {
  135. description = "API key from Datadog."
  136. type = string
  137. default = ""
  138. sensitive = true
  139. }
  140. variable "datadog_region" {
  141. description = "The region that log data will be sent to."
  142. type = string
  143. default = "EU"
  144. validation {
  145. condition = contains(["US", "EU"], var.datadog_region)
  146. error_message = "Datadog region must be either US or EU."
  147. }
  148. }
  149. variable "android_deep_link" {
  150. description = "Enable assets for Android deep link"
  151. type = bool
  152. default = true
  153. }
  154. variable "fastly_globeviz_url" {
  155. description = "URL to send traffic data for fastly for their Global Visualization page"
  156. type = string
  157. default = ""
  158. }
  159. variable "apex_redirect" {
  160. description = "Enable Fastly Apex redirection"
  161. type = bool
  162. default = true
  163. }
  164. variable "static_cache_control" {
  165. description = "Add cache-control headers for static files"
  166. type = bool
  167. default = true
  168. }
  169. variable "mastodon_error_page" {
  170. description = "Whether to enable the official mastodon error page."
  171. type = bool
  172. default = true
  173. }
  174. variable "tarpit" {
  175. description = "Whether to enable tarpit (anti-abuse rate limiting)."
  176. type = bool
  177. default = true
  178. }
  179. variable "apple_associated_domain" {
  180. description = "Enable associated domain for Apple apps"
  181. type = bool
  182. default = true
  183. }
  184. variable "vcl_snippets" {
  185. description = "Additional custom VCL snippets to add to the service."
  186. type = list(object({
  187. content = string
  188. name = string
  189. type = string
  190. priority = optional(number, 100)
  191. }))
  192. default = []
  193. }
  194. variable "edge_security" {
  195. description = "Whether to enable the Edge Security blocklist."
  196. type = bool
  197. default = true
  198. }
  199. variable "gzip_default_policy" {
  200. description = "Whether to enable Fastly's default gzip policy"
  201. type = bool
  202. default = false
  203. }
  204. variable "dynamic_compression" {
  205. description = "Whether to dynamically compress responses before sending them"
  206. type = bool
  207. default = true
  208. }
  209. variable "product_enablement" {
  210. description = "Which additional Fastly products to enable for this service."
  211. type = object({
  212. brotli_compression = optional(bool, false)
  213. domain_inspector = optional(bool, false)
  214. image_optimizer = optional(bool, false)
  215. origin_inspector = optional(bool, false)
  216. websockets = optional(bool, false)
  217. })
  218. default = {
  219. brotli_compression = false
  220. domain_inspector = false
  221. image_optimizer = false
  222. origin_inspector = false
  223. websockets = false
  224. }
  225. }
  226. # IP block lists
  227. variable "ip_blocklist" {
  228. description = "Whether to enable the IP Blocklist ACL. Must be managed externally, unless ip_blocklist_items is given."
  229. type = bool
  230. default = true
  231. }
  232. variable "ip_blocklist_items" {
  233. description = "List of IP CIDRs to block. This will make the ACL object 'managed' by terraform."
  234. type = list(string)
  235. default = []
  236. validation {
  237. condition = can([for s in var.ip_blocklist_items : regex("^([0-9]{1,3}\\.){3}[0-9]{1,3}(\\/([0-9]|[1-2][0-9]|3[0-2]))?$", s)])
  238. error_message = "Each list item must be in a CIDR block format. Example: [\"10.106.108.0/25\"]."
  239. }
  240. }
  241. variable "ip_blocklist_name" {
  242. description = "Name for the ACL responsible for holding all the blocked IP ranges."
  243. type = string
  244. default = "IP Block list"
  245. }
  246. # AS block lists
  247. variable "as_blocklist" {
  248. description = "Whether to enable the AS blocklist ACLs. Must be managed externally, unless as_blocklist_items is given."
  249. type = bool
  250. default = true
  251. }
  252. variable "as_blocklist_items" {
  253. description = "List of Autonomous Systems (AS) to block. This will make the Dictionary object 'managed' by terraform."
  254. type = list(number)
  255. default = []
  256. }
  257. variable "as_blocklist_name" {
  258. description = "Name of the AS blocklist"
  259. type = string
  260. default = "AS Blocklist"
  261. }
  262. variable "as_request_blocklist_items" {
  263. description = "List of Autonomous Systems (AS) to block from making /api or /explore requests. This will make the Dictionary object 'managed' by terraform."
  264. type = list(number)
  265. default = []
  266. }
  267. variable "as_request_blocklist_name" {
  268. description = "Name of the AS request blocklist"
  269. type = string
  270. default = "AS Requests Blocklist"
  271. }
  272. # JA3 block list
  273. variable "ja3_blocklist" {
  274. description = "Whether to enable the JA3 Blocklist Dictionary. Must be managed externally, unless ja3_blocklist_items is given."
  275. type = bool
  276. default = true
  277. }
  278. variable "ja3_blocklist_items" {
  279. description = "List of JA3 hashes to block. This will make the Dictionary object 'managed' by terraform."
  280. type = list(string)
  281. default = []
  282. }
  283. variable "ja3_blocklist_name" {
  284. description = "Name for the Dictionray responsible for holding all the blocked JA3 hashes."
  285. type = string
  286. default = "JA3 Blocklist"
  287. }
  288. # Signal Sciences
  289. variable "signal_science_host" {
  290. description = "Hostname to use to integrate with Signal Sciences"
  291. type = string
  292. default = ""
  293. }
  294. variable "signal_science_shared_key" {
  295. description = "Shared key to use when integrating with Signal Sciences"
  296. type = string
  297. default = ""
  298. }
  299. # Globeviz
  300. variable "globeviz_service" {
  301. description = "Enables sending traffic information to Fastly's Globeviz page using the given service."
  302. type = string
  303. default = ""
  304. }