-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathvariables-auth.tf
More file actions
39 lines (33 loc) · 854 Bytes
/
variables-auth.tf
File metadata and controls
39 lines (33 loc) · 854 Bytes
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
# Google Cloud connection & authentication and Application configuration | variables-auth.tf
# GCP authentication file
variable "gcp_auth_file" {
type = string
description = "GCP authentication file"
}
# define GCP project name
variable "app_project" {
type = string
description = "GCP project name"
}
# define application name
variable "app_name" {
type = string
description = "Application name"
}
# define application domain
variable "app_domain" {
type = string
description = "Application domain"
}
# define application environment
variable "app_environment" {
type = string
description = "Application environment"
}
variable "source_ranges" {
type = list(string)
}
variable "image" {
type = string
default = "debian-12-bookworm-v20230609"
}