Format according to terraform fmt

This commit is contained in:
2024-04-13 18:40:09 +02:00
parent f45d0657c8
commit caa362b279
13 changed files with 43 additions and 43 deletions

View File

@@ -29,7 +29,7 @@ module "snet" {
vcn_id = module.vcn.vcn_id
vcn_nat_route_id = module.vcn.nat_route_id
vcn_ig_route_id = module.vcn.ig_route_id
depends_on = [ module.vcn ]
depends_on = [module.vcn]
}
module "oke" {
@@ -45,7 +45,7 @@ module "oke" {
node_availability_domains = var.availability_domain
node_pool_size = var.node_pool_size
ssh_public_key = var.public_key_path
depends_on = [ module.snet ]
depends_on = [module.snet]
}
module "nlb" {
@@ -60,7 +60,7 @@ module "nlb" {
my_domain = var.my_domain
}
depends_on = [ module.oke ]
depends_on = [module.oke]
}
module "cert-manager" {
@@ -69,7 +69,7 @@ module "cert-manager" {
count = var.install_cert_manager ? 1 : 0
source = "./certmanager"
depends_on = [ module.oke ]
depends_on = [module.oke]
}
module "argocd" {
@@ -80,5 +80,5 @@ module "argocd" {
my_domain = var.my_domain
depends_on = [ module.nlb ]
depends_on = [module.nlb]
}