Skip to content

Commit

Permalink
updated working
Browse files Browse the repository at this point in the history
  • Loading branch information
morga471 committed Oct 24, 2025
1 parent 0926bce commit adbd01e
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 15 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ sys 0m2.015s
| Name | Version |
|------|---------|
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 0.13 |
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 5.14.0 |
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | ~> 6.0 |
| <a name="requirement_helm"></a> [helm](#requirement\_helm) | >= 2.11.0 |
| <a name="requirement_kubernetes"></a> [kubernetes](#requirement\_kubernetes) | >= 2.23.0 |
| <a name="requirement_null"></a> [null](#requirement\_null) | >= 3.2.1 |
Expand Down
6 changes: 3 additions & 3 deletions cert-mgr-cluster-issuer.tf
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ module "subordinate_ca" {

cluster_name = var.cluster_name
contact_email = var.cluster_mailing_list
validity_days = 30
validity_days = 365

tags = merge(
local.common_tags,
Expand All @@ -20,8 +20,7 @@ module "subordinate_ca" {

resource "kubernetes_secret" "ca_key_pair" {
metadata {
name = "ca-key-pair"
# namespace = var.cluster_issuer_name
name = "ca-key-pair"
namespace = var.namespace
}

Expand All @@ -35,6 +34,7 @@ resource "helm_release" "clusterissuer" {
name = "clusterissuer"
chart = "./clusterissuer"
namespace = var.namespace
atomic = true

set = [
{
Expand Down
3 changes: 0 additions & 3 deletions clusterissuer/Chart.yaml

This file was deleted.

7 changes: 0 additions & 7 deletions clusterissuer/templates/clusterissuer.yaml

This file was deleted.

2 changes: 1 addition & 1 deletion requirements.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = ">= 5.14.0"
version = "~> 6.0"
}
helm = {
source = "hashicorp/helm"
Expand Down

0 comments on commit adbd01e

Please sign in to comment.