terraform/modules/emqx-operator/main.tf (27 lines of code) (raw):

# Copyright 2023 Google LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. resource "helm_release" "cert-manager" { name = "cert-manager" repository = "https://charts.jetstack.io" chart = "cert-manager" version = var.cert_manager_version namespace = "cert-manager" create_namespace = true timeout = 900 set { name = "installCRDs" value = "true" } set { name = "global.leaderElection.namespace" value = "cert-manager" } } resource "helm_release" "emqx-operator" { name = "emqx-operator" repository = "https://repos.emqx.io/charts" chart = "emqx-operator" namespace = "emqx-operator-system" create_namespace = true depends_on = [ helm_release.cert-manager ] }