Skip to content

Commit

Permalink
fix: Import resources to fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
gonzalezzfelipe committed Sep 24, 2024
1 parent fd1a659 commit 09650d1
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/iac/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -77,25 +77,25 @@ module "fabric_rpc" {

import {
id = "demeter-global/fabric-rpc"
to = "module.fabric_rpc.kubernetes_stateful_set_v1.rpc"
to = module.fabric_rpc.kubernetes_stateful_set_v1.rpc
}

import {
id = "demeter-global/rpc"
to = "module.fabric_rpc.kubernetes_service_v1.service"
to = module.fabric_rpc.kubernetes_service_v1.service
}

import {
id = "demeter-global/fabric-rpc-crds"
to = "module.fabric_rpc.kubernetes_config_map_v1.fabric_rpc_crds"
to = module.fabric_rpc.kubernetes_config_map_v1.fabric_rpc_crds
}

import {
id = "demeter-global/fabric-rpc-config"
to = "module.fabric_rpc.kubernetes_config_map_v1.fabric_rpc_config"
to = module.fabric_rpc.kubernetes_config_map_v1.fabric_rpc_config
}

import {
id = "apiVersion=cert-manager.io/v1,kind=Certificate,[namespace=demeter-global,]name=rpc-tls"
to = "module.fabric_rpc.kubernetes_manifest.certificate_cluster_wildcard_tls"
to = module.fabric_rpc.kubernetes_manifest.certificate_cluster_wildcard_tls
}

0 comments on commit 09650d1

Please sign in to comment.