google_filestore_instance

Get info about a Google Cloud Filestore instance.

Example Usage

data "google_filestore_instance" "my_instance" {
  name = "my-filestore-instance"
}

output "instance_ip_addresses" {
  value = data.google_filestore_instance.my_instance.networks.ip_addresses
}

output "instance_connect_mode" {
  value = data.google_filestore_instance.my_instance.networks.connect_mode
}

output "instance_file_share_name" {
  value = data.google_filestore_instance.my_instance.file_shares.name
}

Argument Reference

The following arguments are supported:


Attributes Reference

See google_filestore_instance resource for details of the available attributes.