Added some outputs to use as data source.

This commit is contained in:
Andrea Dell'Amico 2024-06-07 14:58:35 +02:00
parent 2cd86e3b7f
commit c64e3be555
Signed by: andrea.dellamico
GPG Key ID: 147ABE6CEB9E20FF
3 changed files with 10 additions and 4 deletions

View File

@ -33,3 +33,8 @@ output "main_haproxy_l7_ip" {
output "octavia_information" {
value = var.octavia_information
}
output "access_postgresql_security_group" {
value = openstack_networking_secgroup_v2.shared_postgresql_access
}

View File

@ -120,7 +120,3 @@ output "networks_list" {
value = var.networks_list
}
# output "default_security_group_name" {
# value = var.default_security_group_name
# }

View File

@ -371,3 +371,8 @@ resource "openstack_networking_secgroup_rule_v2" "grafana_d4s" {
port_range_max = 443
remote_ip_prefix = var.prometheus_server_data.public_grafana_server_cidr
}
output "default_security_group" {
value = openstack_networking_secgroup_v2.default
}