-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
75 additions
and
64 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,24 @@ | ||
# Copyright 2024 Canonical Ltd. | ||
# See LICENSE file for licensing details. | ||
|
||
# Cross-model integrations | ||
# Integration offers for external systems | ||
|
||
output "amf_fiveg_n2_offer_url" { | ||
description = "" | ||
value = juju_offer.amf-fiveg-n2.url | ||
} | ||
|
||
# Outputs required to consume external offers | ||
|
||
output "nms_app_name" { | ||
description = "Name of the deployed NMS application." | ||
value = module.nms.app_name | ||
} | ||
|
||
output "fiveg_n4_endpoint" { | ||
description = "Name of the endpoint to integrate with fiveg_n4 interface." | ||
value = module.nms.fiveg_n4_endpoint | ||
} | ||
|
||
output "fiveg_gnb_identity_endpoint" { | ||
description = "Name of the endpoint to integrate with fiveg_gnb_identity interface." | ||
value = module.nms.fiveg_gnb_identity_endpoint | ||
} | ||
|
||
output "grafana_agent_app_name" { | ||
description = "Name of the deployed Grafana-agent application." | ||
value = module.grafana-agent.app_name | ||
} | ||
|
||
output "send_remote_write_endpoint" { | ||
description = "Name of the endpoint to forward client charms metrics and associated alert rules to Prometheus using prometheus_remote_write interface." | ||
value = module.grafana-agent.send_remote_write_endpoint | ||
} | ||
|
||
output "logging_consumer_endpoint" { | ||
description = "Name of the endpoint to send the logs to Loki using loki_push_api interface." | ||
value = module.grafana-agent.logging_consumer_endpoint | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,25 @@ | ||
# Copyright 2024 Canonical Ltd. | ||
# See LICENSE file for licensing details. | ||
|
||
# Integration offers for external systems | ||
|
||
output "amf_fiveg_n2_offer_url" { | ||
description = "" | ||
description = "AMF `fiveg_n2` offer." | ||
value = juju_offer.amf-fiveg-n2.url | ||
} | ||
|
||
output "upf_fiveg_n3_offer_url" { | ||
description = "UPF `fiveg_n3` offer." | ||
value = juju_offer.upf-fiveg-n3.url | ||
} | ||
|
||
# Outputs required to consume external offers | ||
|
||
output "nms_app_name" { | ||
description = "Name of the deployed NMS application." | ||
value = module.nms.app_name | ||
} | ||
|
||
output "fiveg_gnb_identity_endpoint" { | ||
description = "Name of the endpoint to integrate with fiveg_gnb_identity interface." | ||
value = module.nms.fiveg_gnb_identity_endpoint | ||
} | ||
|
||
output "upf_app_name" { | ||
description = "Name of the deployed UPF application." | ||
value = module.upf.app_name | ||
} | ||
|
||
output "fiveg_n3_endpoint" { | ||
description = "Name of the endpoint used to provide information on connectivity to the N3 plane." | ||
value = module.upf.fiveg_n3_endpoint | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,14 @@ | ||
# Copyright 2024 Canonical Ltd. | ||
# See LICENSE file for licensing details. | ||
|
||
output "upf_app_name" { | ||
description = "Name of the deployed UPF application." | ||
value = module.upf.app_name | ||
} | ||
|
||
output "fiveg_n3_endpoint" { | ||
description = "Name of the endpoint used to provide information on connectivity to the N3 plane." | ||
value = module.upf.fiveg_n3_endpoint | ||
} | ||
# Integration offers for external systems | ||
|
||
output "fiveg_n4_endpoint" { | ||
description = "Name of the endpoint used to provide information on connectivity to the N4 plane." | ||
value = module.upf.fiveg_n4_endpoint | ||
output "upf_fiveg_n3_offer_url" { | ||
description = "UPF `fiveg_n3` offer." | ||
value = juju_offer.upf-fiveg-n3.url | ||
} | ||
|
||
output "grafana_agent_app_name" { | ||
description = "Name of the deployed Grafana-agent application." | ||
value = module.grafana-agent.app_name | ||
output "upf_fiveg_n4_offer_url" { | ||
description = "UPF `fiveg_n4` offer." | ||
value = juju_offer.upf-fiveg-n4.url | ||
} | ||
|
||
output "send_remote_write_endpoint" { | ||
description = "Name of the endpoint to forward client charms metrics and associated alert rules to Prometheus using prometheus_remote_write interface." | ||
value = module.grafana-agent.send_remote_write_endpoint | ||
} | ||
|
||
output "logging_consumer_endpoint" { | ||
description = "Name of the endpoint to send the logs to Loki using loki_push_api interface." | ||
value = module.grafana-agent.logging_consumer_endpoint | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ terraform { | |
required_providers { | ||
juju = { | ||
source = "juju/juju" | ||
version = ">= 0.11.0" | ||
version = ">= 0.12.0" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters