Gateway
Manages an AWS Storage Gateway file, tape, or volume gateway in the provider region.
NOTE: The Storage Gateway API requires the gateway to be connected to properly return information after activation. If you are receiving
The specified gateway is not connectederrors during resource creation (gateway activation), ensure your gateway instance meets the Storage Gateway requirements.
Example Usage
File Gateway
using Pulumi;
using Aws = Pulumi.Aws;
class MyStack : Stack
{
public MyStack()
{
var example = new Aws.StorageGateway.Gateway("example", new Aws.StorageGateway.GatewayArgs
{
GatewayIpAddress = "1.2.3.4",
GatewayName = "example",
GatewayTimezone = "GMT",
GatewayType = "FILE_S3",
});
}
}
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v2/go/aws/storagegateway"
"github.com/pulumi/pulumi/sdk/v2/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := storagegateway.NewGateway(ctx, "example", &storagegateway.GatewayArgs{
GatewayIpAddress: pulumi.String("1.2.3.4"),
GatewayName: pulumi.String("example"),
GatewayTimezone: pulumi.String("GMT"),
GatewayType: pulumi.String("FILE_S3"),
})
if err != nil {
return err
}
return nil
})
}import pulumi
import pulumi_aws as aws
example = aws.storagegateway.Gateway("example",
gateway_ip_address="1.2.3.4",
gateway_name="example",
gateway_timezone="GMT",
gateway_type="FILE_S3")import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.storagegateway.Gateway("example", {
gatewayIpAddress: "1.2.3.4",
gatewayName: "example",
gatewayTimezone: "GMT",
gatewayType: "FILE_S3",
});Tape Gateway
Coming soon!
Coming soon!
import pulumi
import pulumi_aws as aws
example = aws.storagegateway.Gateway("example",
gateway_ip_address="1.2.3.4",
gateway_name="example",
gateway_timezone="GMT",
gateway_type="VTL",
media_changer_type="AWS-Gateway-VTL",
tape_drive_type="IBM-ULT3580-TD5")import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.storagegateway.Gateway("example", {
gatewayIpAddress: "1.2.3.4",
gatewayName: "example",
gatewayTimezone: "GMT",
gatewayType: "VTL",
mediaChangerType: "AWS-Gateway-VTL",
tapeDriveType: "IBM-ULT3580-TD5",
});Volume Gateway (Cached)
using Pulumi;
using Aws = Pulumi.Aws;
class MyStack : Stack
{
public MyStack()
{
var example = new Aws.StorageGateway.Gateway("example", new Aws.StorageGateway.GatewayArgs
{
GatewayIpAddress = "1.2.3.4",
GatewayName = "example",
GatewayTimezone = "GMT",
GatewayType = "CACHED",
});
}
}
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v2/go/aws/storagegateway"
"github.com/pulumi/pulumi/sdk/v2/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := storagegateway.NewGateway(ctx, "example", &storagegateway.GatewayArgs{
GatewayIpAddress: pulumi.String("1.2.3.4"),
GatewayName: pulumi.String("example"),
GatewayTimezone: pulumi.String("GMT"),
GatewayType: pulumi.String("CACHED"),
})
if err != nil {
return err
}
return nil
})
}import pulumi
import pulumi_aws as aws
example = aws.storagegateway.Gateway("example",
gateway_ip_address="1.2.3.4",
gateway_name="example",
gateway_timezone="GMT",
gateway_type="CACHED")import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.storagegateway.Gateway("example", {
gatewayIpAddress: "1.2.3.4",
gatewayName: "example",
gatewayTimezone: "GMT",
gatewayType: "CACHED",
});Volume Gateway (Stored)
using Pulumi;
using Aws = Pulumi.Aws;
class MyStack : Stack
{
public MyStack()
{
var example = new Aws.StorageGateway.Gateway("example", new Aws.StorageGateway.GatewayArgs
{
GatewayIpAddress = "1.2.3.4",
GatewayName = "example",
GatewayTimezone = "GMT",
GatewayType = "STORED",
});
}
}
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v2/go/aws/storagegateway"
"github.com/pulumi/pulumi/sdk/v2/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := storagegateway.NewGateway(ctx, "example", &storagegateway.GatewayArgs{
GatewayIpAddress: pulumi.String("1.2.3.4"),
GatewayName: pulumi.String("example"),
GatewayTimezone: pulumi.String("GMT"),
GatewayType: pulumi.String("STORED"),
})
if err != nil {
return err
}
return nil
})
}import pulumi
import pulumi_aws as aws
example = aws.storagegateway.Gateway("example",
gateway_ip_address="1.2.3.4",
gateway_name="example",
gateway_timezone="GMT",
gateway_type="STORED")import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.storagegateway.Gateway("example", {
gatewayIpAddress: "1.2.3.4",
gatewayName: "example",
gatewayTimezone: "GMT",
gatewayType: "STORED",
});Create a Gateway Resource
new Gateway(name: string, args: GatewayArgs, opts?: CustomResourceOptions);def Gateway(resource_name, opts=None, activation_key=None, cloudwatch_log_group_arn=None, gateway_ip_address=None, gateway_name=None, gateway_timezone=None, gateway_type=None, gateway_vpc_endpoint=None, medium_changer_type=None, smb_active_directory_settings=None, smb_guest_password=None, tags=None, tape_drive_type=None, __props__=None);func NewGateway(ctx *Context, name string, args GatewayArgs, opts ...ResourceOption) (*Gateway, error)public Gateway(string name, GatewayArgs args, CustomResourceOptions? opts = null)- name string
- The unique name of the resource.
- args GatewayArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- opts ResourceOptions
- A bag of options that control this resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args GatewayArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args GatewayArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
Gateway Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Programming Model docs.
Inputs
The Gateway resource accepts the following input properties:
- Gateway
Name string Name of the gateway.
- Gateway
Timezone string Time zone for the gateway. The time zone is of the format “GMT”, “GMT-hr:mm”, or “GMT+hr:mm”. For example,
GMT-4:00indicates the time is 4 hours behind GMT. The time zone is used, for example, for scheduling snapshots and your gateway’s maintenance schedule.- Activation
Key string Gateway activation key during resource creation. Conflicts with
gateway_ip_address. Additional information is available in the Storage Gateway User Guide.- Cloudwatch
Log stringGroup Arn The Amazon Resource Name (ARN) of the Amazon CloudWatch log group to use to monitor and log events in the gateway.
- Gateway
Ip stringAddress Gateway IP address to retrieve activation key during resource creation. Conflicts with
activation_key. Gateway must be accessible on port 80 from where this provider is running. Additional information is available in the Storage Gateway User Guide.- Gateway
Type string Type of the gateway. The default value is
STORED. Valid values:CACHED,FILE_S3,STORED,VTL.- Gateway
Vpc stringEndpoint VPC endpoint address to be used when activating your gateway. This should be used when your instance is in a private subnet. Requires HTTP access from client computer running Pulumi. More info on what ports are required by your VPC Endpoint Security group in Activating a Gateway in a Virtual Private Cloud.
- Medium
Changer stringType - Smb
Active GatewayDirectory Settings Smb Active Directory Settings Args Nested argument with Active Directory domain join information for Server Message Block (SMB) file shares. Only valid for
FILE_S3gateway type. Must be set before creatingActiveDirectoryauthentication SMB file shares. More details below.- Smb
Guest stringPassword Guest password for Server Message Block (SMB) file shares. Only valid for
FILE_S3gateway type. Must be set before creatingGuestAccessauthentication SMB file shares. This provider can only detect drift of the existence of a guest password, not its actual value from the gateway. This provider can however update the password with changing the argument.- Dictionary<string, string>
Key-value mapping of resource tags
- Tape
Drive stringType Type of tape drive to use for tape gateway. This provider cannot detect drift of this argument. Valid values:
IBM-ULT3580-TD5.
- Gateway
Name string Name of the gateway.
- Gateway
Timezone string Time zone for the gateway. The time zone is of the format “GMT”, “GMT-hr:mm”, or “GMT+hr:mm”. For example,
GMT-4:00indicates the time is 4 hours behind GMT. The time zone is used, for example, for scheduling snapshots and your gateway’s maintenance schedule.- Activation
Key string Gateway activation key during resource creation. Conflicts with
gateway_ip_address. Additional information is available in the Storage Gateway User Guide.- Cloudwatch
Log stringGroup Arn The Amazon Resource Name (ARN) of the Amazon CloudWatch log group to use to monitor and log events in the gateway.
- Gateway
Ip stringAddress Gateway IP address to retrieve activation key during resource creation. Conflicts with
activation_key. Gateway must be accessible on port 80 from where this provider is running. Additional information is available in the Storage Gateway User Guide.- Gateway
Type string Type of the gateway. The default value is
STORED. Valid values:CACHED,FILE_S3,STORED,VTL.- Gateway
Vpc stringEndpoint VPC endpoint address to be used when activating your gateway. This should be used when your instance is in a private subnet. Requires HTTP access from client computer running Pulumi. More info on what ports are required by your VPC Endpoint Security group in Activating a Gateway in a Virtual Private Cloud.
- Medium
Changer stringType - Smb
Active GatewayDirectory Settings Smb Active Directory Settings Nested argument with Active Directory domain join information for Server Message Block (SMB) file shares. Only valid for
FILE_S3gateway type. Must be set before creatingActiveDirectoryauthentication SMB file shares. More details below.- Smb
Guest stringPassword Guest password for Server Message Block (SMB) file shares. Only valid for
FILE_S3gateway type. Must be set before creatingGuestAccessauthentication SMB file shares. This provider can only detect drift of the existence of a guest password, not its actual value from the gateway. This provider can however update the password with changing the argument.- map[string]string
Key-value mapping of resource tags
- Tape
Drive stringType Type of tape drive to use for tape gateway. This provider cannot detect drift of this argument. Valid values:
IBM-ULT3580-TD5.
- gateway
Name string Name of the gateway.
- gateway
Timezone string Time zone for the gateway. The time zone is of the format “GMT”, “GMT-hr:mm”, or “GMT+hr:mm”. For example,
GMT-4:00indicates the time is 4 hours behind GMT. The time zone is used, for example, for scheduling snapshots and your gateway’s maintenance schedule.- activation
Key string Gateway activation key during resource creation. Conflicts with
gateway_ip_address. Additional information is available in the Storage Gateway User Guide.- cloudwatch
Log stringGroup Arn The Amazon Resource Name (ARN) of the Amazon CloudWatch log group to use to monitor and log events in the gateway.
- gateway
Ip stringAddress Gateway IP address to retrieve activation key during resource creation. Conflicts with
activation_key. Gateway must be accessible on port 80 from where this provider is running. Additional information is available in the Storage Gateway User Guide.- gateway
Type string Type of the gateway. The default value is
STORED. Valid values:CACHED,FILE_S3,STORED,VTL.- gateway
Vpc stringEndpoint VPC endpoint address to be used when activating your gateway. This should be used when your instance is in a private subnet. Requires HTTP access from client computer running Pulumi. More info on what ports are required by your VPC Endpoint Security group in Activating a Gateway in a Virtual Private Cloud.
- medium
Changer stringType - smb
Active GatewayDirectory Settings Smb Active Directory Settings Nested argument with Active Directory domain join information for Server Message Block (SMB) file shares. Only valid for
FILE_S3gateway type. Must be set before creatingActiveDirectoryauthentication SMB file shares. More details below.- smb
Guest stringPassword Guest password for Server Message Block (SMB) file shares. Only valid for
FILE_S3gateway type. Must be set before creatingGuestAccessauthentication SMB file shares. This provider can only detect drift of the existence of a guest password, not its actual value from the gateway. This provider can however update the password with changing the argument.- {[key: string]: string}
Key-value mapping of resource tags
- tape
Drive stringType Type of tape drive to use for tape gateway. This provider cannot detect drift of this argument. Valid values:
IBM-ULT3580-TD5.
- gateway_
name str Name of the gateway.
- gateway_
timezone str Time zone for the gateway. The time zone is of the format “GMT”, “GMT-hr:mm”, or “GMT+hr:mm”. For example,
GMT-4:00indicates the time is 4 hours behind GMT. The time zone is used, for example, for scheduling snapshots and your gateway’s maintenance schedule.- activation_
key str Gateway activation key during resource creation. Conflicts with
gateway_ip_address. Additional information is available in the Storage Gateway User Guide.- cloudwatch_
log_ strgroup_ arn The Amazon Resource Name (ARN) of the Amazon CloudWatch log group to use to monitor and log events in the gateway.
- gateway_
ip_ straddress Gateway IP address to retrieve activation key during resource creation. Conflicts with
activation_key. Gateway must be accessible on port 80 from where this provider is running. Additional information is available in the Storage Gateway User Guide.- gateway_
type str Type of the gateway. The default value is
STORED. Valid values:CACHED,FILE_S3,STORED,VTL.- gateway_
vpc_ strendpoint VPC endpoint address to be used when activating your gateway. This should be used when your instance is in a private subnet. Requires HTTP access from client computer running Pulumi. More info on what ports are required by your VPC Endpoint Security group in Activating a Gateway in a Virtual Private Cloud.
- medium_
changer_ strtype - smb_
active_ Dict[Gatewaydirectory_ settings Smb Active Directory Settings] Nested argument with Active Directory domain join information for Server Message Block (SMB) file shares. Only valid for
FILE_S3gateway type. Must be set before creatingActiveDirectoryauthentication SMB file shares. More details below.- smb_
guest_ strpassword Guest password for Server Message Block (SMB) file shares. Only valid for
FILE_S3gateway type. Must be set before creatingGuestAccessauthentication SMB file shares. This provider can only detect drift of the existence of a guest password, not its actual value from the gateway. This provider can however update the password with changing the argument.- Dict[str, str]
Key-value mapping of resource tags
- tape_
drive_ strtype Type of tape drive to use for tape gateway. This provider cannot detect drift of this argument. Valid values:
IBM-ULT3580-TD5.
Outputs
All input properties are implicitly available as output properties. Additionally, the Gateway resource produces the following output properties:
Look up an Existing Gateway Resource
Get an existing Gateway resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: GatewayState, opts?: CustomResourceOptions): Gatewaystatic get(resource_name, id, opts=None, activation_key=None, arn=None, cloudwatch_log_group_arn=None, gateway_id=None, gateway_ip_address=None, gateway_name=None, gateway_timezone=None, gateway_type=None, gateway_vpc_endpoint=None, medium_changer_type=None, smb_active_directory_settings=None, smb_guest_password=None, tags=None, tape_drive_type=None, __props__=None);func GetGateway(ctx *Context, name string, id IDInput, state *GatewayState, opts ...ResourceOption) (*Gateway, error)public static Gateway Get(string name, Input<string> id, GatewayState? state, CustomResourceOptions? opts = null)- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
The following state arguments are supported:
- Activation
Key string Gateway activation key during resource creation. Conflicts with
gateway_ip_address. Additional information is available in the Storage Gateway User Guide.- Arn string
Amazon Resource Name (ARN) of the gateway.
- Cloudwatch
Log stringGroup Arn The Amazon Resource Name (ARN) of the Amazon CloudWatch log group to use to monitor and log events in the gateway.
- Gateway
Id string Identifier of the gateway.
- Gateway
Ip stringAddress Gateway IP address to retrieve activation key during resource creation. Conflicts with
activation_key. Gateway must be accessible on port 80 from where this provider is running. Additional information is available in the Storage Gateway User Guide.- Gateway
Name string Name of the gateway.
- Gateway
Timezone string Time zone for the gateway. The time zone is of the format “GMT”, “GMT-hr:mm”, or “GMT+hr:mm”. For example,
GMT-4:00indicates the time is 4 hours behind GMT. The time zone is used, for example, for scheduling snapshots and your gateway’s maintenance schedule.- Gateway
Type string Type of the gateway. The default value is
STORED. Valid values:CACHED,FILE_S3,STORED,VTL.- Gateway
Vpc stringEndpoint VPC endpoint address to be used when activating your gateway. This should be used when your instance is in a private subnet. Requires HTTP access from client computer running Pulumi. More info on what ports are required by your VPC Endpoint Security group in Activating a Gateway in a Virtual Private Cloud.
- Medium
Changer stringType - Smb
Active GatewayDirectory Settings Smb Active Directory Settings Args Nested argument with Active Directory domain join information for Server Message Block (SMB) file shares. Only valid for
FILE_S3gateway type. Must be set before creatingActiveDirectoryauthentication SMB file shares. More details below.- Smb
Guest stringPassword Guest password for Server Message Block (SMB) file shares. Only valid for
FILE_S3gateway type. Must be set before creatingGuestAccessauthentication SMB file shares. This provider can only detect drift of the existence of a guest password, not its actual value from the gateway. This provider can however update the password with changing the argument.- Dictionary<string, string>
Key-value mapping of resource tags
- Tape
Drive stringType Type of tape drive to use for tape gateway. This provider cannot detect drift of this argument. Valid values:
IBM-ULT3580-TD5.
- Activation
Key string Gateway activation key during resource creation. Conflicts with
gateway_ip_address. Additional information is available in the Storage Gateway User Guide.- Arn string
Amazon Resource Name (ARN) of the gateway.
- Cloudwatch
Log stringGroup Arn The Amazon Resource Name (ARN) of the Amazon CloudWatch log group to use to monitor and log events in the gateway.
- Gateway
Id string Identifier of the gateway.
- Gateway
Ip stringAddress Gateway IP address to retrieve activation key during resource creation. Conflicts with
activation_key. Gateway must be accessible on port 80 from where this provider is running. Additional information is available in the Storage Gateway User Guide.- Gateway
Name string Name of the gateway.
- Gateway
Timezone string Time zone for the gateway. The time zone is of the format “GMT”, “GMT-hr:mm”, or “GMT+hr:mm”. For example,
GMT-4:00indicates the time is 4 hours behind GMT. The time zone is used, for example, for scheduling snapshots and your gateway’s maintenance schedule.- Gateway
Type string Type of the gateway. The default value is
STORED. Valid values:CACHED,FILE_S3,STORED,VTL.- Gateway
Vpc stringEndpoint VPC endpoint address to be used when activating your gateway. This should be used when your instance is in a private subnet. Requires HTTP access from client computer running Pulumi. More info on what ports are required by your VPC Endpoint Security group in Activating a Gateway in a Virtual Private Cloud.
- Medium
Changer stringType - Smb
Active GatewayDirectory Settings Smb Active Directory Settings Nested argument with Active Directory domain join information for Server Message Block (SMB) file shares. Only valid for
FILE_S3gateway type. Must be set before creatingActiveDirectoryauthentication SMB file shares. More details below.- Smb
Guest stringPassword Guest password for Server Message Block (SMB) file shares. Only valid for
FILE_S3gateway type. Must be set before creatingGuestAccessauthentication SMB file shares. This provider can only detect drift of the existence of a guest password, not its actual value from the gateway. This provider can however update the password with changing the argument.- map[string]string
Key-value mapping of resource tags
- Tape
Drive stringType Type of tape drive to use for tape gateway. This provider cannot detect drift of this argument. Valid values:
IBM-ULT3580-TD5.
- activation
Key string Gateway activation key during resource creation. Conflicts with
gateway_ip_address. Additional information is available in the Storage Gateway User Guide.- arn string
Amazon Resource Name (ARN) of the gateway.
- cloudwatch
Log stringGroup Arn The Amazon Resource Name (ARN) of the Amazon CloudWatch log group to use to monitor and log events in the gateway.
- gateway
Id string Identifier of the gateway.
- gateway
Ip stringAddress Gateway IP address to retrieve activation key during resource creation. Conflicts with
activation_key. Gateway must be accessible on port 80 from where this provider is running. Additional information is available in the Storage Gateway User Guide.- gateway
Name string Name of the gateway.
- gateway
Timezone string Time zone for the gateway. The time zone is of the format “GMT”, “GMT-hr:mm”, or “GMT+hr:mm”. For example,
GMT-4:00indicates the time is 4 hours behind GMT. The time zone is used, for example, for scheduling snapshots and your gateway’s maintenance schedule.- gateway
Type string Type of the gateway. The default value is
STORED. Valid values:CACHED,FILE_S3,STORED,VTL.- gateway
Vpc stringEndpoint VPC endpoint address to be used when activating your gateway. This should be used when your instance is in a private subnet. Requires HTTP access from client computer running Pulumi. More info on what ports are required by your VPC Endpoint Security group in Activating a Gateway in a Virtual Private Cloud.
- medium
Changer stringType - smb
Active GatewayDirectory Settings Smb Active Directory Settings Nested argument with Active Directory domain join information for Server Message Block (SMB) file shares. Only valid for
FILE_S3gateway type. Must be set before creatingActiveDirectoryauthentication SMB file shares. More details below.- smb
Guest stringPassword Guest password for Server Message Block (SMB) file shares. Only valid for
FILE_S3gateway type. Must be set before creatingGuestAccessauthentication SMB file shares. This provider can only detect drift of the existence of a guest password, not its actual value from the gateway. This provider can however update the password with changing the argument.- {[key: string]: string}
Key-value mapping of resource tags
- tape
Drive stringType Type of tape drive to use for tape gateway. This provider cannot detect drift of this argument. Valid values:
IBM-ULT3580-TD5.
- activation_
key str Gateway activation key during resource creation. Conflicts with
gateway_ip_address. Additional information is available in the Storage Gateway User Guide.- arn str
Amazon Resource Name (ARN) of the gateway.
- cloudwatch_
log_ strgroup_ arn The Amazon Resource Name (ARN) of the Amazon CloudWatch log group to use to monitor and log events in the gateway.
- gateway_
id str Identifier of the gateway.
- gateway_
ip_ straddress Gateway IP address to retrieve activation key during resource creation. Conflicts with
activation_key. Gateway must be accessible on port 80 from where this provider is running. Additional information is available in the Storage Gateway User Guide.- gateway_
name str Name of the gateway.
- gateway_
timezone str Time zone for the gateway. The time zone is of the format “GMT”, “GMT-hr:mm”, or “GMT+hr:mm”. For example,
GMT-4:00indicates the time is 4 hours behind GMT. The time zone is used, for example, for scheduling snapshots and your gateway’s maintenance schedule.- gateway_
type str Type of the gateway. The default value is
STORED. Valid values:CACHED,FILE_S3,STORED,VTL.- gateway_
vpc_ strendpoint VPC endpoint address to be used when activating your gateway. This should be used when your instance is in a private subnet. Requires HTTP access from client computer running Pulumi. More info on what ports are required by your VPC Endpoint Security group in Activating a Gateway in a Virtual Private Cloud.
- medium_
changer_ strtype - smb_
active_ Dict[Gatewaydirectory_ settings Smb Active Directory Settings] Nested argument with Active Directory domain join information for Server Message Block (SMB) file shares. Only valid for
FILE_S3gateway type. Must be set before creatingActiveDirectoryauthentication SMB file shares. More details below.- smb_
guest_ strpassword Guest password for Server Message Block (SMB) file shares. Only valid for
FILE_S3gateway type. Must be set before creatingGuestAccessauthentication SMB file shares. This provider can only detect drift of the existence of a guest password, not its actual value from the gateway. This provider can however update the password with changing the argument.- Dict[str, str]
Key-value mapping of resource tags
- tape_
drive_ strtype Type of tape drive to use for tape gateway. This provider cannot detect drift of this argument. Valid values:
IBM-ULT3580-TD5.
Supporting Types
GatewaySmbActiveDirectorySettings
Package Details
- Repository
- https://github.com/pulumi/pulumi-aws
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
awsTerraform Provider.