Skip to content

Commit

Permalink
chore(deps): update terraform registry.terraform.io/iits-consulting/p…
Browse files Browse the repository at this point in the history
…roject-factory/opentelekomcloud to v7.1.2
  • Loading branch information
renovate[bot] authored Oct 14, 2024
1 parent 6f54bf2 commit cd92936
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion otc-cloud/dev/crds/crds.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module "crds" {
source = "registry.terraform.io/iits-consulting/project-factory/opentelekomcloud//modules/crd_installer"
version = "6.0.2"
version = "7.1.2"
default_chart_overrides = {
traefik = {
version = "28.1.0"
Expand Down
12 changes: 6 additions & 6 deletions otc-cloud/dev/infrastructure/main.tf
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
module "vpc" {
source = "registry.terraform.io/iits-consulting/project-factory/opentelekomcloud//modules/vpc"
version = "7.1.0"
version = "7.1.2"
name = "${var.context}-${var.stage}-vpc"
cidr_block = var.vpc_cidr
tags = local.tags
}

module "snat" {
source = "registry.terraform.io/iits-consulting/project-factory/opentelekomcloud//modules/snat"
version = "7.1.0"
version = "7.1.2"
name_prefix = "${var.context}-${var.stage}"
subnet_id = module.vpc.subnets["kubernetes-subnet"].id
vpc_id = module.vpc.vpc.id
Expand All @@ -17,7 +17,7 @@ module "snat" {

module "cce" {
source = "registry.terraform.io/iits-consulting/project-factory/opentelekomcloud//modules/cce"
version = "7.1.0"
version = "7.1.2"

name = "${var.context}-${var.stage}"
cluster_vpc_id = module.vpc.vpc.id
Expand All @@ -44,7 +44,7 @@ module "cce" {

module "loadbalancer" {
source = "registry.terraform.io/iits-consulting/project-factory/opentelekomcloud//modules/loadbalancer"
version = "7.1.0"
version = "7.1.2"
context_name = var.context
subnet_id = module.vpc.subnets["kubernetes-subnet"].subnet_id
stage_name = var.stage
Expand All @@ -53,7 +53,7 @@ module "loadbalancer" {

module "private_dns" {
source = "registry.terraform.io/iits-consulting/project-factory/opentelekomcloud//modules/private_dns"
version = "7.1.0"
version = "7.1.2"

domain = "vpc.private"
a_records = {
Expand All @@ -64,7 +64,7 @@ module "private_dns" {

module "public_dns" {
source = "registry.terraform.io/iits-consulting/project-factory/opentelekomcloud//modules/public_dns"
version = "7.1.0"
version = "7.1.2"

domain = var.domain_name
email = var.email
Expand Down

0 comments on commit cd92936

Please sign in to comment.