File System Association Args
    data class FileSystemAssociationArgs(val auditDestinationArn: Output<String>? = null, val cacheAttributes: Output<FileSystemAssociationCacheAttributesArgs>? = null, val gatewayArn: Output<String>? = null, val locationArn: Output<String>? = null, val password: Output<String>? = null, val tags: Output<Map<String, String>>? = null, val username: Output<String>? = null) : ConvertibleToJava<FileSystemAssociationArgs> 
Associate an Amazon FSx file system with the FSx File Gateway. After the association process is complete, the file shares on the Amazon FSx file system are available for access through the gateway. This operation only supports the FSx File Gateway type. FSx File Gateway requirements.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.storagegateway.FileSystemAssociation("example", {
    gatewayArn: exampleAwsStoragegatewayGateway.arn,
    locationArn: exampleAwsFsxWindowsFileSystem.arn,
    username: "Admin",
    password: "avoid-plaintext-passwords",
    auditDestinationArn: exampleAwsS3Bucket.arn,
});Content copied to clipboard
import pulumi
import pulumi_aws as aws
example = aws.storagegateway.FileSystemAssociation("example",
    gateway_arn=example_aws_storagegateway_gateway["arn"],
    location_arn=example_aws_fsx_windows_file_system["arn"],
    username="Admin",
    password="avoid-plaintext-passwords",
    audit_destination_arn=example_aws_s3_bucket["arn"])Content copied to clipboard
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
    var example = new Aws.StorageGateway.FileSystemAssociation("example", new()
    {
        GatewayArn = exampleAwsStoragegatewayGateway.Arn,
        LocationArn = exampleAwsFsxWindowsFileSystem.Arn,
        Username = "Admin",
        Password = "avoid-plaintext-passwords",
        AuditDestinationArn = exampleAwsS3Bucket.Arn,
    });
});Content copied to clipboard
package main
import (
	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/storagegateway"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := storagegateway.NewFileSystemAssociation(ctx, "example", &storagegateway.FileSystemAssociationArgs{
			GatewayArn:          pulumi.Any(exampleAwsStoragegatewayGateway.Arn),
			LocationArn:         pulumi.Any(exampleAwsFsxWindowsFileSystem.Arn),
			Username:            pulumi.String("Admin"),
			Password:            pulumi.String("avoid-plaintext-passwords"),
			AuditDestinationArn: pulumi.Any(exampleAwsS3Bucket.Arn),
		})
		if err != nil {
			return err
		}
		return nil
	})
}Content copied to clipboard
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.storagegateway.FileSystemAssociation;
import com.pulumi.aws.storagegateway.FileSystemAssociationArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }
    public static void stack(Context ctx) {
        var example = new FileSystemAssociation("example", FileSystemAssociationArgs.builder()
            .gatewayArn(exampleAwsStoragegatewayGateway.arn())
            .locationArn(exampleAwsFsxWindowsFileSystem.arn())
            .username("Admin")
            .password("avoid-plaintext-passwords")
            .auditDestinationArn(exampleAwsS3Bucket.arn())
            .build());
    }
}Content copied to clipboard
resources:
  example:
    type: aws:storagegateway:FileSystemAssociation
    properties:
      gatewayArn: ${exampleAwsStoragegatewayGateway.arn}
      locationArn: ${exampleAwsFsxWindowsFileSystem.arn}
      username: Admin
      password: avoid-plaintext-passwords
      auditDestinationArn: ${exampleAwsS3Bucket.arn}Content copied to clipboard
Required Services Example
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const awsServiceStoragegatewayAmiFILES3Latest = aws.ssm.getParameter({
    name: "/aws/service/storagegateway/ami/FILE_S3/latest",
});
const test = new aws.ec2.Instance("test", {
    ami: awsServiceStoragegatewayAmiFILES3Latest.then(awsServiceStoragegatewayAmiFILES3Latest => awsServiceStoragegatewayAmiFILES3Latest.value),
    associatePublicIpAddress: true,
    instanceType: aws.ec2.InstanceType[available.instanceType],
    vpcSecurityGroupIds: [testAwsSecurityGroup.id],
    subnetId: testAwsSubnet[0].id,
}, {
    dependsOn: [
        testAwsRoute,
        testAwsVpcDhcpOptionsAssociation,
    ],
});
const testGateway = new aws.storagegateway.Gateway("test", {
    gatewayIpAddress: test.publicIp,
    gatewayName: "test-sgw",
    gatewayTimezone: "GMT",
    gatewayType: "FILE_FSX_SMB",
    smbActiveDirectorySettings: {
        domainName: testAwsDirectoryServiceDirectory.name,
        password: testAwsDirectoryServiceDirectory.password,
        username: "Admin",
    },
});
const testWindowsFileSystem = new aws.fsx.WindowsFileSystem("test", {
    activeDirectoryId: testAwsDirectoryServiceDirectory.id,
    securityGroupIds: [testAwsSecurityGroup.id],
    skipFinalBackup: true,
    storageCapacity: 32,
    subnetIds: [testAwsSubnet[0].id],
    throughputCapacity: 8,
});
const fsx = new aws.storagegateway.FileSystemAssociation("fsx", {
    gatewayArn: testGateway.arn,
    locationArn: testWindowsFileSystem.arn,
    username: "Admin",
    password: testAwsDirectoryServiceDirectory.password,
    cacheAttributes: {
        cacheStaleTimeoutInSeconds: 400,
    },
    auditDestinationArn: testAwsCloudwatchLogGroup.arn,
});Content copied to clipboard
import pulumi
import pulumi_aws as aws
aws_service_storagegateway_ami_files3_latest = aws.ssm.get_parameter(name="/aws/service/storagegateway/ami/FILE_S3/latest")
test = aws.ec2.Instance("test",
    ami=aws_service_storagegateway_ami_files3_latest.value,
    associate_public_ip_address=True,
    instance_type=aws.ec2.InstanceType(available["instanceType"]),
    vpc_security_group_ids=[test_aws_security_group["id"]],
    subnet_id=test_aws_subnet[0]["id"],
    opts=pulumi.ResourceOptions(depends_on=[
            test_aws_route,
            test_aws_vpc_dhcp_options_association,
        ]))
test_gateway = aws.storagegateway.Gateway("test",
    gateway_ip_address=test.public_ip,
    gateway_name="test-sgw",
    gateway_timezone="GMT",
    gateway_type="FILE_FSX_SMB",
    smb_active_directory_settings=aws.storagegateway.GatewaySmbActiveDirectorySettingsArgs(
        domain_name=test_aws_directory_service_directory["name"],
        password=test_aws_directory_service_directory["password"],
        username="Admin",
    ))
test_windows_file_system = aws.fsx.WindowsFileSystem("test",
    active_directory_id=test_aws_directory_service_directory["id"],
    security_group_ids=[test_aws_security_group["id"]],
    skip_final_backup=True,
    storage_capacity=32,
    subnet_ids=[test_aws_subnet[0]["id"]],
    throughput_capacity=8)
fsx = aws.storagegateway.FileSystemAssociation("fsx",
    gateway_arn=test_gateway.arn,
    location_arn=test_windows_file_system.arn,
    username="Admin",
    password=test_aws_directory_service_directory["password"],
    cache_attributes=aws.storagegateway.FileSystemAssociationCacheAttributesArgs(
        cache_stale_timeout_in_seconds=400,
    ),
    audit_destination_arn=test_aws_cloudwatch_log_group["arn"])Content copied to clipboard
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
    var awsServiceStoragegatewayAmiFILES3Latest = Aws.Ssm.GetParameter.Invoke(new()
    {
        Name = "/aws/service/storagegateway/ami/FILE_S3/latest",
    });
    var test = new Aws.Ec2.Instance("test", new()
    {
        Ami = awsServiceStoragegatewayAmiFILES3Latest.Apply(getParameterResult => getParameterResult.Value),
        AssociatePublicIpAddress = true,
        InstanceType = System.Enum.Parse<Aws.Ec2.InstanceType>(available.InstanceType),
        VpcSecurityGroupIds = new[]
        {
            testAwsSecurityGroup.Id,
        },
        SubnetId = testAwsSubnet[0].Id,
    }, new CustomResourceOptions
    {
        DependsOn =
        {
            testAwsRoute,
            testAwsVpcDhcpOptionsAssociation,
        },
    });
    var testGateway = new Aws.StorageGateway.Gateway("test", new()
    {
        GatewayIpAddress = test.PublicIp,
        GatewayName = "test-sgw",
        GatewayTimezone = "GMT",
        GatewayType = "FILE_FSX_SMB",
        SmbActiveDirectorySettings = new Aws.StorageGateway.Inputs.GatewaySmbActiveDirectorySettingsArgs
        {
            DomainName = testAwsDirectoryServiceDirectory.Name,
            Password = testAwsDirectoryServiceDirectory.Password,
            Username = "Admin",
        },
    });
    var testWindowsFileSystem = new Aws.Fsx.WindowsFileSystem("test", new()
    {
        ActiveDirectoryId = testAwsDirectoryServiceDirectory.Id,
        SecurityGroupIds = new[]
        {
            testAwsSecurityGroup.Id,
        },
        SkipFinalBackup = true,
        StorageCapacity = 32,
        SubnetIds = new[]
        {
            testAwsSubnet[0].Id,
        },
        ThroughputCapacity = 8,
    });
    var fsx = new Aws.StorageGateway.FileSystemAssociation("fsx", new()
    {
        GatewayArn = testGateway.Arn,
        LocationArn = testWindowsFileSystem.Arn,
        Username = "Admin",
        Password = testAwsDirectoryServiceDirectory.Password,
        CacheAttributes = new Aws.StorageGateway.Inputs.FileSystemAssociationCacheAttributesArgs
        {
            CacheStaleTimeoutInSeconds = 400,
        },
        AuditDestinationArn = testAwsCloudwatchLogGroup.Arn,
    });
});Content copied to clipboard
package main
import (
	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2"
	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/fsx"
	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ssm"
	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/storagegateway"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		awsServiceStoragegatewayAmiFILES3Latest, err := ssm.LookupParameter(ctx, &ssm.LookupParameterArgs{
			Name: "/aws/service/storagegateway/ami/FILE_S3/latest",
		}, nil)
		if err != nil {
			return err
		}
		test, err := ec2.NewInstance(ctx, "test", &ec2.InstanceArgs{
			Ami:                      pulumi.String(awsServiceStoragegatewayAmiFILES3Latest.Value),
			AssociatePublicIpAddress: pulumi.Bool(true),
			InstanceType:             ec2.InstanceType(available.InstanceType),
			VpcSecurityGroupIds: pulumi.StringArray{
				testAwsSecurityGroup.Id,
			},
			SubnetId: pulumi.Any(testAwsSubnet[0].Id),
		}, pulumi.DependsOn([]pulumi.Resource{
			testAwsRoute,
			testAwsVpcDhcpOptionsAssociation,
		}))
		if err != nil {
			return err
		}
		testGateway, err := storagegateway.NewGateway(ctx, "test", &storagegateway.GatewayArgs{
			GatewayIpAddress: test.PublicIp,
			GatewayName:      pulumi.String("test-sgw"),
			GatewayTimezone:  pulumi.String("GMT"),
			GatewayType:      pulumi.String("FILE_FSX_SMB"),
			SmbActiveDirectorySettings: &storagegateway.GatewaySmbActiveDirectorySettingsArgs{
				DomainName: pulumi.Any(testAwsDirectoryServiceDirectory.Name),
				Password:   pulumi.Any(testAwsDirectoryServiceDirectory.Password),
				Username:   pulumi.String("Admin"),
			},
		})
		if err != nil {
			return err
		}
		testWindowsFileSystem, err := fsx.NewWindowsFileSystem(ctx, "test", &fsx.WindowsFileSystemArgs{
			ActiveDirectoryId: pulumi.Any(testAwsDirectoryServiceDirectory.Id),
			SecurityGroupIds: pulumi.StringArray{
				testAwsSecurityGroup.Id,
			},
			SkipFinalBackup: pulumi.Bool(true),
			StorageCapacity: pulumi.Int(32),
			SubnetIds: pulumi.StringArray{
				testAwsSubnet[0].Id,
			},
			ThroughputCapacity: pulumi.Int(8),
		})
		if err != nil {
			return err
		}
		_, err = storagegateway.NewFileSystemAssociation(ctx, "fsx", &storagegateway.FileSystemAssociationArgs{
			GatewayArn:  testGateway.Arn,
			LocationArn: testWindowsFileSystem.Arn,
			Username:    pulumi.String("Admin"),
			Password:    pulumi.Any(testAwsDirectoryServiceDirectory.Password),
			CacheAttributes: &storagegateway.FileSystemAssociationCacheAttributesArgs{
				CacheStaleTimeoutInSeconds: pulumi.Int(400),
			},
			AuditDestinationArn: pulumi.Any(testAwsCloudwatchLogGroup.Arn),
		})
		if err != nil {
			return err
		}
		return nil
	})
}Content copied to clipboard
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.ssm.SsmFunctions;
import com.pulumi.aws.ssm.inputs.GetParameterArgs;
import com.pulumi.aws.ec2.Instance;
import com.pulumi.aws.ec2.InstanceArgs;
import com.pulumi.aws.storagegateway.Gateway;
import com.pulumi.aws.storagegateway.GatewayArgs;
import com.pulumi.aws.storagegateway.inputs.GatewaySmbActiveDirectorySettingsArgs;
import com.pulumi.aws.fsx.WindowsFileSystem;
import com.pulumi.aws.fsx.WindowsFileSystemArgs;
import com.pulumi.aws.storagegateway.FileSystemAssociation;
import com.pulumi.aws.storagegateway.FileSystemAssociationArgs;
import com.pulumi.aws.storagegateway.inputs.FileSystemAssociationCacheAttributesArgs;
import com.pulumi.resources.CustomResourceOptions;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }
    public static void stack(Context ctx) {
        final var awsServiceStoragegatewayAmiFILES3Latest = SsmFunctions.getParameter(GetParameterArgs.builder()
            .name("/aws/service/storagegateway/ami/FILE_S3/latest")
            .build());
        var test = new Instance("test", InstanceArgs.builder()
            .ami(awsServiceStoragegatewayAmiFILES3Latest.applyValue(getParameterResult -> getParameterResult.value()))
            .associatePublicIpAddress(true)
            .instanceType(available.instanceType())
            .vpcSecurityGroupIds(testAwsSecurityGroup.id())
            .subnetId(testAwsSubnet[0].id())
            .build(), CustomResourceOptions.builder()
                .dependsOn(
                    testAwsRoute,
                    testAwsVpcDhcpOptionsAssociation)
                .build());
        var testGateway = new Gateway("testGateway", GatewayArgs.builder()
            .gatewayIpAddress(test.publicIp())
            .gatewayName("test-sgw")
            .gatewayTimezone("GMT")
            .gatewayType("FILE_FSX_SMB")
            .smbActiveDirectorySettings(GatewaySmbActiveDirectorySettingsArgs.builder()
                .domainName(testAwsDirectoryServiceDirectory.name())
                .password(testAwsDirectoryServiceDirectory.password())
                .username("Admin")
                .build())
            .build());
        var testWindowsFileSystem = new WindowsFileSystem("testWindowsFileSystem", WindowsFileSystemArgs.builder()
            .activeDirectoryId(testAwsDirectoryServiceDirectory.id())
            .securityGroupIds(testAwsSecurityGroup.id())
            .skipFinalBackup(true)
            .storageCapacity(32)
            .subnetIds(testAwsSubnet[0].id())
            .throughputCapacity(8)
            .build());
        var fsx = new FileSystemAssociation("fsx", FileSystemAssociationArgs.builder()
            .gatewayArn(testGateway.arn())
            .locationArn(testWindowsFileSystem.arn())
            .username("Admin")
            .password(testAwsDirectoryServiceDirectory.password())
            .cacheAttributes(FileSystemAssociationCacheAttributesArgs.builder()
                .cacheStaleTimeoutInSeconds(400)
                .build())
            .auditDestinationArn(testAwsCloudwatchLogGroup.arn())
            .build());
    }
}Content copied to clipboard
resources:
  test:
    type: aws:ec2:Instance
    properties:
      ami: ${awsServiceStoragegatewayAmiFILES3Latest.value}
      associatePublicIpAddress: true
      instanceType: ${available.instanceType}
      vpcSecurityGroupIds:
        - ${testAwsSecurityGroup.id}
      subnetId: ${testAwsSubnet[0].id}
    options:
      dependson:
        - ${testAwsRoute}
        - ${testAwsVpcDhcpOptionsAssociation}
  testGateway:
    type: aws:storagegateway:Gateway
    name: test
    properties:
      gatewayIpAddress: ${test.publicIp}
      gatewayName: test-sgw
      gatewayTimezone: GMT
      gatewayType: FILE_FSX_SMB
      smbActiveDirectorySettings:
        domainName: ${testAwsDirectoryServiceDirectory.name}
        password: ${testAwsDirectoryServiceDirectory.password}
        username: Admin
  testWindowsFileSystem:
    type: aws:fsx:WindowsFileSystem
    name: test
    properties:
      activeDirectoryId: ${testAwsDirectoryServiceDirectory.id}
      securityGroupIds:
        - ${testAwsSecurityGroup.id}
      skipFinalBackup: true
      storageCapacity: 32
      subnetIds:
        - ${testAwsSubnet[0].id}
      throughputCapacity: 8
  fsx:
    type: aws:storagegateway:FileSystemAssociation
    properties:
      gatewayArn: ${testGateway.arn}
      locationArn: ${testWindowsFileSystem.arn}
      username: Admin
      password: ${testAwsDirectoryServiceDirectory.password}
      cacheAttributes:
        cacheStaleTimeoutInSeconds: 400
      auditDestinationArn: ${testAwsCloudwatchLogGroup.arn}
variables:
  awsServiceStoragegatewayAmiFILES3Latest:
    fn::invoke:
      Function: aws:ssm:getParameter
      Arguments:
        name: /aws/service/storagegateway/ami/FILE_S3/latestContent copied to clipboard
Import
Using pulumi import, import aws_storagegateway_file_system_association using the FSx file system association Amazon Resource Name (ARN). For example:
$ pulumi import aws:storagegateway/fileSystemAssociation:FileSystemAssociation example arn:aws:storagegateway:us-east-1:123456789012:fs-association/fsa-0DA347732FDB40125Content copied to clipboard
Constructors
Link copied to clipboard
                fun FileSystemAssociationArgs(auditDestinationArn: Output<String>? = null, cacheAttributes: Output<FileSystemAssociationCacheAttributesArgs>? = null, gatewayArn: Output<String>? = null, locationArn: Output<String>? = null, password: Output<String>? = null, tags: Output<Map<String, String>>? = null, username: Output<String>? = null)