Skip to content

Commit

Permalink
fix endpoint names
Browse files Browse the repository at this point in the history
  • Loading branch information
asbalderson committed Dec 4, 2024
1 parent a80dff8 commit 2cc28ab
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 15 deletions.
18 changes: 9 additions & 9 deletions charms/worker/k8s/terraform/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -8,21 +8,21 @@ output "app_name" {

output "requires" {
value = {
aws = "aws-integration"
azure = "azure-integration"
etcd = "etcd"
external_cloud_provider = "external_cloud_provider"
gcp = "gcp-integration"
aws = "aws"
azure = "azure"
etcd = "etcd"
external_cloud_provider = "external-cloud-provider"
gcp = "gcp"
}
}

output "provides" {
value = {
cos_agent = "cos_agent"
cos_worker_tokens = "cos-k8s-tokens"
cos_agent = "cos-agent"
cos_worker_tokens = "cos-worker-tokens"
containerd = "containerd"
ceph_k8s_info = "kubernetes-info"
ceph_k8s_info = "ceph-k8s-info"
k8s_cluster = "k8s-cluster"
kube_contro = "kube-control"
kube_control = "kube-control"
}
}
12 changes: 6 additions & 6 deletions charms/worker/terraform/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,17 @@ output "app_name" {

output "requires" {
value = {
aws = "aws-integration"
azure = "azure-integration"
cluster = "k8s-cluster"
cos_tokens = "cos-k8s-tokens"
aws = "aws"
azure = "azure"
cluster = "k8s"
cos_tokens = "cos-tokens"
containerd = "containerd"
gcp = "gcp-integration"
gcp = "gcp"
}
}

output "provides" {
value = {
cos_agent = "cos_agent"
cos_agent = "cos-agent"
}
}

0 comments on commit 2cc28ab

Please sign in to comment.