Move the outputs into a separate file.

This commit is contained in:
Andrea Dell'Amico 2024-01-31 16:23:32 +01:00
parent 4267a5b1d0
commit ace1f66e85
Signed by untrusted user: andrea.dellamico
GPG Key ID: 147ABE6CEB9E20FF
2 changed files with 7 additions and 8 deletions

View File

@ -95,11 +95,3 @@ resource "openstack_sharedfilesystem_share_access_v2" "redmine_dev_nfs_share_acc
access_to = openstack_compute_interface_attach_v2.nfs_port_to_redmine.fixed_ip
access_level = "rw"
}
output "nfs_port_data" {
value = openstack_compute_interface_attach_v2.nfs_port_to_redmine
}
output "redmine_nfs_volume_data" {
value = openstack_sharedfilesystem_share_v2.redmine_dev
}

View File

@ -0,0 +1,7 @@
output "nfs_port_data" {
value = openstack_compute_interface_attach_v2.nfs_port_to_redmine
}
output "redmine_nfs_volume_data" {
value = openstack_sharedfilesystem_share_v2.redmine_dev
}