Namespace Pulumi.Gcp.Filestore
Classes
Instance
A Google Cloud Filestore instance.
To get more information about Instance, see:
Example Usage - Filestore Instance Basic
using Pulumi;
using Gcp = Pulumi.Gcp;
class MyStack : Stack
{
public MyStack()
{
var instance = new Gcp.Filestore.Instance("instance", new Gcp.Filestore.InstanceArgs
{
FileShares = new Gcp.Filestore.Inputs.InstanceFileSharesArgs
{
CapacityGb = 2660,
Name = "share1",
},
Networks =
{
new Gcp.Filestore.Inputs.InstanceNetworkArgs
{
Modes =
{
"MODE_IPV4",
},
Network = "default",
},
},
Tier = "PREMIUM",
Zone = "us-central1-b",
});
}
}