Skip to content

Commit d178c1c

Browse files
committed
chore: wrong path to module
1 parent 7f27a27 commit d178c1c

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,8 @@ Check [examples](./examples/) for examples.
6363
6464
| Name | Source | Version |
6565
|------|--------|---------|
66-
| <a name="module_meshcloud-service-account-meshfed-metering"></a> [meshcloud-service-account-meshfed-metering](#module\_meshcloud-service-account-meshfed-metering) | git::https://github.com/meshcloud/terraform-kubernetes-meshplatform.git | v0.1.0 |
67-
| <a name="module_meshcloud-service-account-meshfed-replicator"></a> [meshcloud-service-account-meshfed-replicator](#module\_meshcloud-service-account-meshfed-replicator) | git::https://github.com/meshcloud/terraform-kubernetes-meshplatform.git | v0.1.0 |
66+
| <a name="module_meshcloud-service-account-meshfed-metering"></a> [meshcloud-service-account-meshfed-metering](#module\_meshcloud-service-account-meshfed-metering) | git::https://github.com/meshcloud/terraform-kubernetes-meshplatform.git//modules/meshcloud-service-account-meshfed-metering | v0.1.0 |
67+
| <a name="module_meshcloud-service-account-meshfed-replicator"></a> [meshcloud-service-account-meshfed-replicator](#module\_meshcloud-service-account-meshfed-replicator) | git::https://github.com/meshcloud/terraform-kubernetes-meshplatform.git//modules/meshcloud-service-account-meshfed-replicator | v0.1.0 |
6868
| <a name="module_replicator_service_principal"></a> [replicator\_service\_principal](#module\_replicator\_service\_principal) | ./modules/meshcloud-replicator-service-principal | n/a |
6969
7070
## Resources

main.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,17 @@ module "replicator_service_principal" {
1717
}
1818
application_owners = var.application_owners
1919
}
20-
//add source ref v0.1.0
20+
2121
module "meshcloud-service-account-meshfed-metering" {
2222
count = var.metering_enabled ? 1 : 0
23-
source = "git::https://github.com/meshcloud/terraform-kubernetes-meshplatform.git?ref=v0.1.0"
23+
source = "git::https://github.com/meshcloud/terraform-kubernetes-meshplatform.git//modules/meshcloud-service-account-meshfed-metering?ref=v0.1.0"
2424
namespace = kubernetes_namespace.meshcloud.metadata.0.name
2525
additional_rules = var.metering_additional_rules
2626
}
2727

2828
module "meshcloud-service-account-meshfed-replicator" {
2929
count = var.replicator_enabled ? 1 : 0
30-
source = "git::https://github.com/meshcloud/terraform-kubernetes-meshplatform.git?ref=v0.1.0"
30+
source = "git::https://github.com/meshcloud/terraform-kubernetes-meshplatform.git//modules/meshcloud-service-account-meshfed-replicator?ref=v0.1.0"
3131
namespace = kubernetes_namespace.meshcloud.metadata.0.name
3232
additional_rules = var.replicator_additional_rules
3333
}

0 commit comments

Comments
 (0)