Cert-Manager into Google Cloud Platform

module "cert_manager" {
source = "nlamirault/cert-manager/google"
version = "1.0.0"
project = var.project
namespace = var.namespace
service_account = var.service_account
}
and variables :
project = "foo-prod"
##############################################################################
# Cert-Manager
namespace = "cert-manager"
service_account = "cert-manager"
No providers.
Name |
Source |
Version |
iam |
terraform-google-modules/iam/google//modules/service_accounts_iam |
7.4.0 |
service_account |
terraform-google-modules/service-accounts/google |
4.0.3 |
No resources.
Name |
Description |
Type |
Default |
Required |
namespace |
The Kubernetes namespace |
string |
n/a |
yes |
project |
The project in which the resource belongs |
string |
n/a |
yes |
service_account |
The Kubernetes service account |
string |
n/a |
yes |