-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathmain.tf
More file actions
108 lines (90 loc) · 2.61 KB
/
main.tf
File metadata and controls
108 lines (90 loc) · 2.61 KB
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
terraform {
required_version = ">= 1.0"
required_providers {
google = {
source = "hashicorp/google"
version = ">= 6.0"
}
random = {
source = "hashicorp/random"
version = "~> 3.0"
}
}
}
provider "google" {
project = var.project_id
region = var.region
}
module "materialize" {
# Referencing the root module directory:
source = "../.."
# Alternatively, you can use the GitHub source URL:
# source = "github.com/MaterializeInc/terraform-google-materialize?ref=v0.1.0"
project_id = var.project_id
region = var.region
prefix = var.prefix
database_config = {
tier = "db-custom-2-4096"
version = "POSTGRES_15"
password = random_password.pass.result
}
labels = {
environment = "simple"
example = "true"
}
install_materialize_operator = true
# Once the operator is installed, you can define your Materialize instances here.
materialize_instances = var.materialize_instances
}
variable "project_id" {
description = "GCP Project ID"
type = string
}
variable "region" {
description = "GCP Region"
type = string
default = "us-central1"
}
variable "prefix" {
description = "Used to prefix the names of the resources"
type = string
default = "mz-simple"
}
resource "random_password" "pass" {
length = 20
special = false
}
output "gke_cluster" {
description = "GKE cluster details"
value = module.materialize.gke_cluster
sensitive = true
}
output "service_accounts" {
description = "Service account details"
value = module.materialize.service_accounts
}
output "connection_strings" {
description = "Connection strings for metadata and persistence backends"
value = module.materialize.connection_strings
sensitive = true
}
variable "materialize_instances" {
description = "List of Materialize instances to be created."
type = list(object({
name = string
namespace = optional(string)
database_name = string
create_database = optional(bool, true)
environmentd_version = optional(string, "v0.130.4")
cpu_request = optional(string, "1")
memory_request = optional(string, "1Gi")
memory_limit = optional(string, "1Gi")
in_place_rollout = optional(bool, false)
request_rollout = optional(string)
force_rollout = optional(string)
balancer_memory_request = optional(string, "256Mi")
balancer_memory_limit = optional(string, "256Mi")
balancer_cpu_request = optional(string, "100m")
}))
default = []
}