forked from openstack-snaps/sunbeam-terraform
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathoutputs.tf
86 lines (72 loc) · 2.64 KB
/
outputs.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
# Terraform manifest for deployment of OpenStack Sunbeam
#
# Copyright (c) 2023 Canonical Ltd.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
# implied.
# See the License for the specific language governing permissions and
# limitations under the License.
output "ca-offer-url" {
description = "URL of the certificates authority offer"
value = juju_offer.ca-offer.url
}
output "keystone-offer-url" {
description = "URL of the keystone offer"
value = one(module.keystone.keystone-offer-url[*])
}
output "keystone-endpoints-offer-url" {
description = "URL of the keystone endpoints offer"
value = one(module.keystone.keystone-endpoints-offer-url[*])
}
output "rabbitmq-offer-url" {
description = "URL of the RabbitMQ offer"
value = module.rabbitmq.rabbitmq-offer-url
}
output "ovn-relay-offer-url" {
description = "URL of the ovn relay offer"
value = one(module.ovn.ovn-relay-offer-url[*])
}
output "ceilometer-offer-url" {
description = "URL of the ceilometer offer"
value = one(juju_offer.ceilometer-offer[*].url)
}
output "cinder-ceph-offer-url" {
description = "URL of the cinder ceph offer"
value = one(module.cinder-ceph.cinder-ceph-offer-url[*])
}
output "cert-distributor-offer-url" {
description = "URL of the cert distributor offer"
value = one(module.keystone.cert-distributor-offer-url[*])
}
output "nova-offer-url" {
description = "URL of the nova service offer"
value = one(module.nova.nova-offer-url[*])
}
output "ingress-rgw-offer-url" {
description = "URL of the RGW ingress offer"
value = one(juju_offer.ingress-rgw-offer[*].url)
}
output "consul-management-cluster-offer-url" {
description = "URL of the Consul Management cluster offer"
value = one(module.consul-management[*].consul-cluster-offer-url)
}
output "consul-tenant-cluster-offer-url" {
description = "URL of the Consul Tenant cluster offer"
value = one(module.consul-tenant[*].consul-cluster-offer-url)
}
output "consul-storage-cluster-offer-url" {
description = "URL of the Consul Storage cluster offer"
value = one(module.consul-storage[*].consul-cluster-offer-url)
}
output "masakari-offer-url" {
description = "URL of the masakari offer"
value = one(juju_offer.masakari-offer[*].url)
}