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
  • Loading branch information
renovate[bot] authored Jul 25, 2024
1 parent 5541da7 commit 7ee3d25
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions otc-cloud/dev/infrastructure/main.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module "vpc" {
source = "registry.terraform.io/iits-consulting/project-factory/opentelekomcloud//modules/vpc"
version = "6.1.1"
version = "7.0.0"
name = "${var.context}-${var.stage}-vpc"
cidr_block = var.vpc_cidr
enable_shared_snat = false
Expand All @@ -9,7 +9,7 @@ module "vpc" {

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

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

name = "${var.context}-${var.stage}"
cluster_vpc_id = module.vpc.vpc.id
Expand Down Expand Up @@ -52,7 +52,7 @@ resource "null_resource" "get_kube_config" {

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

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

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

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

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

0 comments on commit 7ee3d25

Please sign in to comment.