@pulumi/aws
Version:
A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.
801 lines • 52.6 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as inputs from "../types/input";
import * as outputs from "../types/output";
/**
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as aws from "@pulumi/aws";
*
* // Request a spot instance at $0.03
* const cheapWorker = new aws.ec2.SpotInstanceRequest("cheap_worker", {
* ami: "ami-1234",
* spotPrice: "0.03",
* instanceType: "c4.xlarge",
* tags: {
* Name: "CheapWorker",
* },
* });
* ```
*/
export declare class SpotInstanceRequest extends pulumi.CustomResource {
/**
* Get an existing SpotInstanceRequest resource's state with the given name, ID, and optional extra
* properties used to qualify the lookup.
*
* @param name The _unique_ name of the resulting resource.
* @param id The _unique_ provider ID of the resource to lookup.
* @param state Any extra arguments used during the lookup.
* @param opts Optional settings to control the behavior of the CustomResource.
*/
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: SpotInstanceRequestState, opts?: pulumi.CustomResourceOptions): SpotInstanceRequest;
/**
* Returns true if the given object is an instance of SpotInstanceRequest. This is designed to work even
* when multiple copies of the Pulumi SDK have been loaded into the same process.
*/
static isInstance(obj: any): obj is SpotInstanceRequest;
/**
* AMI to use for the instance. Required unless `launchTemplate` is specified and the Launch Template specifes an AMI. If an AMI is specified in the Launch Template, setting `ami` will override the AMI specified in the Launch Template.
*/
readonly ami: pulumi.Output<string>;
readonly arn: pulumi.Output<string>;
/**
* Whether to associate a public IP address with an instance in a VPC.
*/
readonly associatePublicIpAddress: pulumi.Output<boolean>;
/**
* AZ to start the instance in.
*/
readonly availabilityZone: pulumi.Output<string>;
/**
* Describes an instance's Capacity Reservation targeting option. See Capacity Reservation Specification below for more details.
*/
readonly capacityReservationSpecification: pulumi.Output<outputs.ec2.SpotInstanceRequestCapacityReservationSpecification>;
/**
* The CPU options for the instance. See CPU Options below for more details.
*/
readonly cpuOptions: pulumi.Output<outputs.ec2.SpotInstanceRequestCpuOptions>;
/**
* Configuration block for customizing the credit specification of the instance. See Credit Specification below for more details. This provider will only perform drift detection of its value when present in a configuration. Removing this configuration on existing instances will only stop managing it. It will not change the configuration back to the default for the instance type.
*/
readonly creditSpecification: pulumi.Output<outputs.ec2.SpotInstanceRequestCreditSpecification | undefined>;
/**
* If true, enables [EC2 Instance Stop Protection](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Stop_Start.html#Using_StopProtection).
*/
readonly disableApiStop: pulumi.Output<boolean>;
/**
* If true, enables [EC2 Instance Termination Protection](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/terminating-instances.html#Using_ChangingDisableAPITermination).
*/
readonly disableApiTermination: pulumi.Output<boolean>;
/**
* One or more configuration blocks with additional EBS block devices to attach to the instance. Block device configurations only apply on resource creation. See Block Devices below for details on attributes and drift detection. When accessing this as an attribute reference, it is a set of objects.
*/
readonly ebsBlockDevices: pulumi.Output<outputs.ec2.SpotInstanceRequestEbsBlockDevice[]>;
/**
* If true, the launched EC2 instance will be EBS-optimized. Note that if this is not set on an instance type that is optimized by default then this will show as disabled but if the instance type is optimized by default then there is no need to set this and there is no effect to disabling it. See the [EBS Optimized section](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSOptimized.html) of the AWS User Guide for more information.
*/
readonly ebsOptimized: pulumi.Output<boolean>;
/**
* Whether to assign a primary IPv6 Global Unicast Address (GUA) to the instance when launched in a dual-stack or IPv6-only subnet. A primary IPv6 address ensures a consistent IPv6 address for the instance and is automatically assigned by AWS to the ENI. Once enabled, the first IPv6 GUA becomes the primary IPv6 address and cannot be disabled. The primary IPv6 address remains until the instance is terminated or the ENI is detached. Disabling `enablePrimaryIpv6` after it has been enabled forces recreation of the instance.
*/
readonly enablePrimaryIpv6: pulumi.Output<boolean>;
/**
* Enable Nitro Enclaves on launched instances. See Enclave Options below for more details.
*/
readonly enclaveOptions: pulumi.Output<outputs.ec2.SpotInstanceRequestEnclaveOptions>;
/**
* One or more configuration blocks to customize Ephemeral (also known as "Instance Store") volumes on the instance. See Block Devices below for details. When accessing this as an attribute reference, it is a set of objects.
*/
readonly ephemeralBlockDevices: pulumi.Output<outputs.ec2.SpotInstanceRequestEphemeralBlockDevice[]>;
/**
* Destroys instance even if `disableApiTermination` or `disableApiStop` is set to `true`. Defaults to `false`. Once this parameter is set to `true`, a successful `pulumi up` run before a destroy is required to update this value in the resource state. Without a successful `pulumi up` after this parameter is set, this flag will have no effect. If setting this field in the same operation that would require replacing the instance or destroying the instance, this flag will not work. Additionally when importing an instance, a successful `pulumi up` is required to set this value in state before it will take effect on a destroy operation.
*/
readonly forceDestroy: pulumi.Output<boolean | undefined>;
/**
* If true, wait for password data to become available and retrieve it. Useful for getting the administrator password for instances running Microsoft Windows. The password data is exported to the `passwordData` attribute. See [GetPasswordData](https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_GetPasswordData.html) for more information.
*/
readonly getPasswordData: pulumi.Output<boolean | undefined>;
/**
* If true, the launched EC2 instance will support hibernation.
*/
readonly hibernation: pulumi.Output<boolean | undefined>;
/**
* ID of a dedicated host that the instance will be assigned to. Use when an instance is to be launched on a specific dedicated host.
*/
readonly hostId: pulumi.Output<string>;
/**
* ARN of the host resource group in which to launch the instances. If you specify an ARN, omit the `tenancy` parameter or set it to `host`.
*/
readonly hostResourceGroupArn: pulumi.Output<string>;
/**
* IAM Instance Profile to launch the instance with. Specified as the name of the Instance Profile. Ensure your credentials have the correct permission to assign the instance profile according to the [EC2 documentation](http://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_use_switch-role-ec2.html#roles-usingrole-ec2instance-permissions), notably `iam:PassRole`.
*/
readonly iamInstanceProfile: pulumi.Output<string>;
/**
* Shutdown behavior for the instance. Amazon defaults this to `stop` for EBS-backed instances and `terminate` for instance-store instances. Cannot be set on instance-store instances. See [Shutdown Behavior](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/terminating-instances.html#Using_ChangingInstanceInitiatedShutdownBehavior) for more information.
*/
readonly instanceInitiatedShutdownBehavior: pulumi.Output<string>;
/**
* Indicates Spot instance behavior when it is interrupted. Valid values are `terminate`, `stop`, or `hibernate`. Default value is `terminate`.
*/
readonly instanceInterruptionBehavior: pulumi.Output<string | undefined>;
readonly instanceState: pulumi.Output<string>;
/**
* Instance type to use for the instance. Required unless `launchTemplate` is specified and the Launch Template specifies an instance type. If an instance type is specified in the Launch Template, setting `instanceType` will override the instance type specified in the Launch Template. Updates to this field will trigger a stop/start of the EC2 instance.
*/
readonly instanceType: pulumi.Output<string>;
/**
* Number of IPv6 addresses to associate with the primary network interface. Amazon EC2 chooses the IPv6 addresses from the range of your subnet.
*/
readonly ipv6AddressCount: pulumi.Output<number>;
/**
* Specify one or more IPv6 addresses from the range of the subnet to associate with the primary network interface
*/
readonly ipv6Addresses: pulumi.Output<string[]>;
/**
* Key name of the Key Pair to use for the instance; which can be managed using the `aws.ec2.KeyPair` resource.
*/
readonly keyName: pulumi.Output<string>;
/**
* A launch group is a group of spot instances that launch together and terminate together.
* If left empty instances are launched and terminated individually.
*/
readonly launchGroup: pulumi.Output<string | undefined>;
/**
* Specifies a Launch Template to configure the instance. Parameters configured on this resource will override the corresponding parameters in the Launch Template. See Launch Template Specification below for more details.
*/
readonly launchTemplate: pulumi.Output<outputs.ec2.SpotInstanceRequestLaunchTemplate | undefined>;
/**
* Maintenance and recovery options for the instance. See Maintenance Options below for more details.
*/
readonly maintenanceOptions: pulumi.Output<outputs.ec2.SpotInstanceRequestMaintenanceOptions>;
/**
* Customize the metadata options of the instance. See Metadata Options below for more details.
*/
readonly metadataOptions: pulumi.Output<outputs.ec2.SpotInstanceRequestMetadataOptions>;
/**
* If true, the launched EC2 instance will have detailed monitoring enabled. (Available since v0.6.0)
*/
readonly monitoring: pulumi.Output<boolean>;
/**
* Customize network interfaces to be attached at instance boot time. See Network Interfaces below for more details.
*
* @deprecated network_interface is deprecated. To specify the primary network interface, use primaryNetworkInterface instead. To attach additional network interfaces, use the aws.ec2.NetworkInterfaceAttachment resource.
*/
readonly networkInterfaces: pulumi.Output<outputs.ec2.SpotInstanceRequestNetworkInterface[]>;
readonly outpostArn: pulumi.Output<string>;
readonly passwordData: pulumi.Output<string>;
/**
* Placement Group to start the instance in. Conflicts with `placementGroupId`.
*/
readonly placementGroup: pulumi.Output<string>;
/**
* Placement Group ID to start the instance in. Conflicts with `placementGroup`.
*/
readonly placementGroupId: pulumi.Output<string>;
/**
* Number of the partition the instance is in. Valid only if the `aws.ec2.PlacementGroup` resource's `strategy` argument is set to `"partition"`.
*/
readonly placementPartitionNumber: pulumi.Output<number>;
readonly primaryNetworkInterfaceId: pulumi.Output<string>;
/**
* The primary network interface. See Primary Network Interface below.
*/
readonly primaryNetworkInterfaces: pulumi.Output<outputs.ec2.SpotInstanceRequestPrimaryNetworkInterface[]>;
/**
* The private DNS name assigned to the instance. Can only be
* used inside the Amazon EC2, and only available if you've enabled DNS hostnames
* for your VPC
*/
readonly privateDns: pulumi.Output<string>;
/**
* Options for the instance hostname. The default values are inherited from the subnet. See Private DNS Name Options below for more details.
*/
readonly privateDnsNameOptions: pulumi.Output<outputs.ec2.SpotInstanceRequestPrivateDnsNameOptions>;
/**
* Private IP address to associate with the instance in a VPC.
*/
readonly privateIp: pulumi.Output<string>;
/**
* The public DNS name assigned to the instance. For EC2-VPC, this
* is only available if you've enabled DNS hostnames for your VPC
*/
readonly publicDns: pulumi.Output<string>;
/**
* The public IP address assigned to the instance, if applicable.
*/
readonly publicIp: pulumi.Output<string>;
/**
* Region where this resource will be [managed](https://docs.aws.amazon.com/general/latest/gr/rande.html#regional-endpoints). Defaults to the Region set in the provider configuration.
*/
readonly region: pulumi.Output<string>;
/**
* Configuration block to customize details about the root block device of the instance. See Block Devices below for details. When accessing this as an attribute reference, it is a list containing one object.
*/
readonly rootBlockDevice: pulumi.Output<outputs.ec2.SpotInstanceRequestRootBlockDevice>;
/**
* List of secondary private IPv4 addresses to assign to the instance's primary network interface (eth0) in a VPC. Can only be assigned to the primary network interface (eth0) attached at instance creation, not a pre-existing network interface i.e., referenced in a `networkInterface` block. Refer to the [Elastic network interfaces documentation](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-eni.html#AvailableIpPerENI) to see the maximum number of private IP addresses allowed per instance type.
*/
readonly secondaryPrivateIps: pulumi.Output<string[]>;
/**
* List of security group names to associate with.
*
* > **NOTE:** If you are creating Instances in a VPC, use `vpcSecurityGroupIds` instead.
*/
readonly securityGroups: pulumi.Output<string[]>;
/**
* Controls if traffic is routed to the instance when the destination address does not match the instance. Used for NAT or VPNs. Defaults true.
*/
readonly sourceDestCheck: pulumi.Output<boolean | undefined>;
/**
* The current [bid
* status](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/spot-bid-status.html)
* of the Spot Instance Request.
*/
readonly spotBidStatus: pulumi.Output<string>;
/**
* The Instance ID (if any) that is currently fulfilling
* the Spot Instance request.
*/
readonly spotInstanceId: pulumi.Output<string>;
/**
* The maximum price to request on the spot market.
*/
readonly spotPrice: pulumi.Output<string>;
/**
* The current [request
* state](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/spot-requests.html#creating-spot-request-status)
* of the Spot Instance Request.
*/
readonly spotRequestState: pulumi.Output<string>;
/**
* If set to `one-time`, after
* the instance is terminated, the spot request will be closed.
*/
readonly spotType: pulumi.Output<string | undefined>;
/**
* VPC Subnet ID to launch in.
*/
readonly subnetId: pulumi.Output<string>;
/**
* Map of tags to assign to the resource. Note that these tags apply to the instance and not block storage devices. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.
*/
readonly tags: pulumi.Output<{
[key: string]: string;
} | undefined>;
/**
* A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block.
*/
readonly tagsAll: pulumi.Output<{
[key: string]: string;
}>;
/**
* Tenancy of the instance (if the instance is running in a VPC). An instance with a tenancy of `dedicated` runs on single-tenant hardware. The `host` tenancy is not supported for the import-instance command. Valid values are `default`, `dedicated`, and `host`.
*/
readonly tenancy: pulumi.Output<string>;
/**
* User data to provide when launching the instance. Do not pass gzip-compressed data via this argument; see `userDataBase64` instead. Updates to this field will trigger a stop/start of the EC2 instance by default. If the `userDataReplaceOnChange` is set then updates to this field will trigger a destroy and recreate of the EC2 instance.
*/
readonly userData: pulumi.Output<string | undefined>;
/**
* Can be used instead of `userData` to pass base64-encoded binary data directly. Use this instead of `userData` whenever the value is not a valid UTF-8 string. For example, gzip-encoded user data must be base64-encoded and passed via this argument to avoid corruption. Updates to this field will trigger a stop/start of the EC2 instance by default. If the `userDataReplaceOnChange` is set then updates to this field will trigger a destroy and recreate of the EC2 instance.
*/
readonly userDataBase64: pulumi.Output<string>;
/**
* When used in combination with `userData` or `userDataBase64` will trigger a destroy and recreate of the EC2 instance when set to `true`. Defaults to `false` if not set.
*/
readonly userDataReplaceOnChange: pulumi.Output<boolean | undefined>;
/**
* The start date and time of the request, in UTC [RFC3339](https://tools.ietf.org/html/rfc3339#section-5.8) format(for example, YYYY-MM-DDTHH:MM:SSZ). The default is to start fulfilling the request immediately.
*/
readonly validFrom: pulumi.Output<string>;
/**
* The end date and time of the request, in UTC [RFC3339](https://tools.ietf.org/html/rfc3339#section-5.8) format(for example, YYYY-MM-DDTHH:MM:SSZ). At this point, no new Spot instance requests are placed or enabled to fulfill the request. The default end date is 7 days from the current date.
*/
readonly validUntil: pulumi.Output<string>;
/**
* Map of tags to assign, at instance-creation time, to root and EBS volumes.
*
* > **NOTE:** Do not use `volumeTags` if you plan to manage block device tags outside the `aws.ec2.Instance` configuration, such as using `tags` in an `aws.ebs.Volume` resource attached via `aws.ec2.VolumeAttachment`. Doing so will result in resource cycling and inconsistent behavior.
*/
readonly volumeTags: pulumi.Output<{
[key: string]: string;
} | undefined>;
/**
* List of security group IDs to associate with.
*/
readonly vpcSecurityGroupIds: pulumi.Output<string[]>;
/**
* If set, this provider will
* wait for the Spot Request to be fulfilled, and will throw an error if the
* timeout of 10m is reached.
*/
readonly waitForFulfillment: pulumi.Output<boolean | undefined>;
/**
* Create a SpotInstanceRequest resource with the given unique name, arguments, and options.
*
* @param name The _unique_ name of the resource.
* @param args The arguments to use to populate this resource's properties.
* @param opts A bag of options that control this resource's behavior.
*/
constructor(name: string, args?: SpotInstanceRequestArgs, opts?: pulumi.CustomResourceOptions);
}
/**
* Input properties used for looking up and filtering SpotInstanceRequest resources.
*/
export interface SpotInstanceRequestState {
/**
* AMI to use for the instance. Required unless `launchTemplate` is specified and the Launch Template specifes an AMI. If an AMI is specified in the Launch Template, setting `ami` will override the AMI specified in the Launch Template.
*/
ami?: pulumi.Input<string>;
arn?: pulumi.Input<string>;
/**
* Whether to associate a public IP address with an instance in a VPC.
*/
associatePublicIpAddress?: pulumi.Input<boolean>;
/**
* AZ to start the instance in.
*/
availabilityZone?: pulumi.Input<string>;
/**
* Describes an instance's Capacity Reservation targeting option. See Capacity Reservation Specification below for more details.
*/
capacityReservationSpecification?: pulumi.Input<inputs.ec2.SpotInstanceRequestCapacityReservationSpecification>;
/**
* The CPU options for the instance. See CPU Options below for more details.
*/
cpuOptions?: pulumi.Input<inputs.ec2.SpotInstanceRequestCpuOptions>;
/**
* Configuration block for customizing the credit specification of the instance. See Credit Specification below for more details. This provider will only perform drift detection of its value when present in a configuration. Removing this configuration on existing instances will only stop managing it. It will not change the configuration back to the default for the instance type.
*/
creditSpecification?: pulumi.Input<inputs.ec2.SpotInstanceRequestCreditSpecification>;
/**
* If true, enables [EC2 Instance Stop Protection](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Stop_Start.html#Using_StopProtection).
*/
disableApiStop?: pulumi.Input<boolean>;
/**
* If true, enables [EC2 Instance Termination Protection](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/terminating-instances.html#Using_ChangingDisableAPITermination).
*/
disableApiTermination?: pulumi.Input<boolean>;
/**
* One or more configuration blocks with additional EBS block devices to attach to the instance. Block device configurations only apply on resource creation. See Block Devices below for details on attributes and drift detection. When accessing this as an attribute reference, it is a set of objects.
*/
ebsBlockDevices?: pulumi.Input<pulumi.Input<inputs.ec2.SpotInstanceRequestEbsBlockDevice>[]>;
/**
* If true, the launched EC2 instance will be EBS-optimized. Note that if this is not set on an instance type that is optimized by default then this will show as disabled but if the instance type is optimized by default then there is no need to set this and there is no effect to disabling it. See the [EBS Optimized section](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSOptimized.html) of the AWS User Guide for more information.
*/
ebsOptimized?: pulumi.Input<boolean>;
/**
* Whether to assign a primary IPv6 Global Unicast Address (GUA) to the instance when launched in a dual-stack or IPv6-only subnet. A primary IPv6 address ensures a consistent IPv6 address for the instance and is automatically assigned by AWS to the ENI. Once enabled, the first IPv6 GUA becomes the primary IPv6 address and cannot be disabled. The primary IPv6 address remains until the instance is terminated or the ENI is detached. Disabling `enablePrimaryIpv6` after it has been enabled forces recreation of the instance.
*/
enablePrimaryIpv6?: pulumi.Input<boolean>;
/**
* Enable Nitro Enclaves on launched instances. See Enclave Options below for more details.
*/
enclaveOptions?: pulumi.Input<inputs.ec2.SpotInstanceRequestEnclaveOptions>;
/**
* One or more configuration blocks to customize Ephemeral (also known as "Instance Store") volumes on the instance. See Block Devices below for details. When accessing this as an attribute reference, it is a set of objects.
*/
ephemeralBlockDevices?: pulumi.Input<pulumi.Input<inputs.ec2.SpotInstanceRequestEphemeralBlockDevice>[]>;
/**
* Destroys instance even if `disableApiTermination` or `disableApiStop` is set to `true`. Defaults to `false`. Once this parameter is set to `true`, a successful `pulumi up` run before a destroy is required to update this value in the resource state. Without a successful `pulumi up` after this parameter is set, this flag will have no effect. If setting this field in the same operation that would require replacing the instance or destroying the instance, this flag will not work. Additionally when importing an instance, a successful `pulumi up` is required to set this value in state before it will take effect on a destroy operation.
*/
forceDestroy?: pulumi.Input<boolean>;
/**
* If true, wait for password data to become available and retrieve it. Useful for getting the administrator password for instances running Microsoft Windows. The password data is exported to the `passwordData` attribute. See [GetPasswordData](https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_GetPasswordData.html) for more information.
*/
getPasswordData?: pulumi.Input<boolean>;
/**
* If true, the launched EC2 instance will support hibernation.
*/
hibernation?: pulumi.Input<boolean>;
/**
* ID of a dedicated host that the instance will be assigned to. Use when an instance is to be launched on a specific dedicated host.
*/
hostId?: pulumi.Input<string>;
/**
* ARN of the host resource group in which to launch the instances. If you specify an ARN, omit the `tenancy` parameter or set it to `host`.
*/
hostResourceGroupArn?: pulumi.Input<string>;
/**
* IAM Instance Profile to launch the instance with. Specified as the name of the Instance Profile. Ensure your credentials have the correct permission to assign the instance profile according to the [EC2 documentation](http://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_use_switch-role-ec2.html#roles-usingrole-ec2instance-permissions), notably `iam:PassRole`.
*/
iamInstanceProfile?: pulumi.Input<string>;
/**
* Shutdown behavior for the instance. Amazon defaults this to `stop` for EBS-backed instances and `terminate` for instance-store instances. Cannot be set on instance-store instances. See [Shutdown Behavior](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/terminating-instances.html#Using_ChangingInstanceInitiatedShutdownBehavior) for more information.
*/
instanceInitiatedShutdownBehavior?: pulumi.Input<string>;
/**
* Indicates Spot instance behavior when it is interrupted. Valid values are `terminate`, `stop`, or `hibernate`. Default value is `terminate`.
*/
instanceInterruptionBehavior?: pulumi.Input<string>;
instanceState?: pulumi.Input<string>;
/**
* Instance type to use for the instance. Required unless `launchTemplate` is specified and the Launch Template specifies an instance type. If an instance type is specified in the Launch Template, setting `instanceType` will override the instance type specified in the Launch Template. Updates to this field will trigger a stop/start of the EC2 instance.
*/
instanceType?: pulumi.Input<string>;
/**
* Number of IPv6 addresses to associate with the primary network interface. Amazon EC2 chooses the IPv6 addresses from the range of your subnet.
*/
ipv6AddressCount?: pulumi.Input<number>;
/**
* Specify one or more IPv6 addresses from the range of the subnet to associate with the primary network interface
*/
ipv6Addresses?: pulumi.Input<pulumi.Input<string>[]>;
/**
* Key name of the Key Pair to use for the instance; which can be managed using the `aws.ec2.KeyPair` resource.
*/
keyName?: pulumi.Input<string>;
/**
* A launch group is a group of spot instances that launch together and terminate together.
* If left empty instances are launched and terminated individually.
*/
launchGroup?: pulumi.Input<string>;
/**
* Specifies a Launch Template to configure the instance. Parameters configured on this resource will override the corresponding parameters in the Launch Template. See Launch Template Specification below for more details.
*/
launchTemplate?: pulumi.Input<inputs.ec2.SpotInstanceRequestLaunchTemplate>;
/**
* Maintenance and recovery options for the instance. See Maintenance Options below for more details.
*/
maintenanceOptions?: pulumi.Input<inputs.ec2.SpotInstanceRequestMaintenanceOptions>;
/**
* Customize the metadata options of the instance. See Metadata Options below for more details.
*/
metadataOptions?: pulumi.Input<inputs.ec2.SpotInstanceRequestMetadataOptions>;
/**
* If true, the launched EC2 instance will have detailed monitoring enabled. (Available since v0.6.0)
*/
monitoring?: pulumi.Input<boolean>;
/**
* Customize network interfaces to be attached at instance boot time. See Network Interfaces below for more details.
*
* @deprecated network_interface is deprecated. To specify the primary network interface, use primaryNetworkInterface instead. To attach additional network interfaces, use the aws.ec2.NetworkInterfaceAttachment resource.
*/
networkInterfaces?: pulumi.Input<pulumi.Input<inputs.ec2.SpotInstanceRequestNetworkInterface>[]>;
outpostArn?: pulumi.Input<string>;
passwordData?: pulumi.Input<string>;
/**
* Placement Group to start the instance in. Conflicts with `placementGroupId`.
*/
placementGroup?: pulumi.Input<string>;
/**
* Placement Group ID to start the instance in. Conflicts with `placementGroup`.
*/
placementGroupId?: pulumi.Input<string>;
/**
* Number of the partition the instance is in. Valid only if the `aws.ec2.PlacementGroup` resource's `strategy` argument is set to `"partition"`.
*/
placementPartitionNumber?: pulumi.Input<number>;
primaryNetworkInterfaceId?: pulumi.Input<string>;
/**
* The primary network interface. See Primary Network Interface below.
*/
primaryNetworkInterfaces?: pulumi.Input<pulumi.Input<inputs.ec2.SpotInstanceRequestPrimaryNetworkInterface>[]>;
/**
* The private DNS name assigned to the instance. Can only be
* used inside the Amazon EC2, and only available if you've enabled DNS hostnames
* for your VPC
*/
privateDns?: pulumi.Input<string>;
/**
* Options for the instance hostname. The default values are inherited from the subnet. See Private DNS Name Options below for more details.
*/
privateDnsNameOptions?: pulumi.Input<inputs.ec2.SpotInstanceRequestPrivateDnsNameOptions>;
/**
* Private IP address to associate with the instance in a VPC.
*/
privateIp?: pulumi.Input<string>;
/**
* The public DNS name assigned to the instance. For EC2-VPC, this
* is only available if you've enabled DNS hostnames for your VPC
*/
publicDns?: pulumi.Input<string>;
/**
* The public IP address assigned to the instance, if applicable.
*/
publicIp?: pulumi.Input<string>;
/**
* Region where this resource will be [managed](https://docs.aws.amazon.com/general/latest/gr/rande.html#regional-endpoints). Defaults to the Region set in the provider configuration.
*/
region?: pulumi.Input<string>;
/**
* Configuration block to customize details about the root block device of the instance. See Block Devices below for details. When accessing this as an attribute reference, it is a list containing one object.
*/
rootBlockDevice?: pulumi.Input<inputs.ec2.SpotInstanceRequestRootBlockDevice>;
/**
* List of secondary private IPv4 addresses to assign to the instance's primary network interface (eth0) in a VPC. Can only be assigned to the primary network interface (eth0) attached at instance creation, not a pre-existing network interface i.e., referenced in a `networkInterface` block. Refer to the [Elastic network interfaces documentation](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-eni.html#AvailableIpPerENI) to see the maximum number of private IP addresses allowed per instance type.
*/
secondaryPrivateIps?: pulumi.Input<pulumi.Input<string>[]>;
/**
* List of security group names to associate with.
*
* > **NOTE:** If you are creating Instances in a VPC, use `vpcSecurityGroupIds` instead.
*/
securityGroups?: pulumi.Input<pulumi.Input<string>[]>;
/**
* Controls if traffic is routed to the instance when the destination address does not match the instance. Used for NAT or VPNs. Defaults true.
*/
sourceDestCheck?: pulumi.Input<boolean>;
/**
* The current [bid
* status](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/spot-bid-status.html)
* of the Spot Instance Request.
*/
spotBidStatus?: pulumi.Input<string>;
/**
* The Instance ID (if any) that is currently fulfilling
* the Spot Instance request.
*/
spotInstanceId?: pulumi.Input<string>;
/**
* The maximum price to request on the spot market.
*/
spotPrice?: pulumi.Input<string>;
/**
* The current [request
* state](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/spot-requests.html#creating-spot-request-status)
* of the Spot Instance Request.
*/
spotRequestState?: pulumi.Input<string>;
/**
* If set to `one-time`, after
* the instance is terminated, the spot request will be closed.
*/
spotType?: pulumi.Input<string>;
/**
* VPC Subnet ID to launch in.
*/
subnetId?: pulumi.Input<string>;
/**
* Map of tags to assign to the resource. Note that these tags apply to the instance and not block storage devices. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.
*/
tags?: pulumi.Input<{
[key: string]: pulumi.Input<string>;
}>;
/**
* A map of tags assigned to the resource, including those inherited from the provider `defaultTags` configuration block.
*/
tagsAll?: pulumi.Input<{
[key: string]: pulumi.Input<string>;
}>;
/**
* Tenancy of the instance (if the instance is running in a VPC). An instance with a tenancy of `dedicated` runs on single-tenant hardware. The `host` tenancy is not supported for the import-instance command. Valid values are `default`, `dedicated`, and `host`.
*/
tenancy?: pulumi.Input<string>;
/**
* User data to provide when launching the instance. Do not pass gzip-compressed data via this argument; see `userDataBase64` instead. Updates to this field will trigger a stop/start of the EC2 instance by default. If the `userDataReplaceOnChange` is set then updates to this field will trigger a destroy and recreate of the EC2 instance.
*/
userData?: pulumi.Input<string>;
/**
* Can be used instead of `userData` to pass base64-encoded binary data directly. Use this instead of `userData` whenever the value is not a valid UTF-8 string. For example, gzip-encoded user data must be base64-encoded and passed via this argument to avoid corruption. Updates to this field will trigger a stop/start of the EC2 instance by default. If the `userDataReplaceOnChange` is set then updates to this field will trigger a destroy and recreate of the EC2 instance.
*/
userDataBase64?: pulumi.Input<string>;
/**
* When used in combination with `userData` or `userDataBase64` will trigger a destroy and recreate of the EC2 instance when set to `true`. Defaults to `false` if not set.
*/
userDataReplaceOnChange?: pulumi.Input<boolean>;
/**
* The start date and time of the request, in UTC [RFC3339](https://tools.ietf.org/html/rfc3339#section-5.8) format(for example, YYYY-MM-DDTHH:MM:SSZ). The default is to start fulfilling the request immediately.
*/
validFrom?: pulumi.Input<string>;
/**
* The end date and time of the request, in UTC [RFC3339](https://tools.ietf.org/html/rfc3339#section-5.8) format(for example, YYYY-MM-DDTHH:MM:SSZ). At this point, no new Spot instance requests are placed or enabled to fulfill the request. The default end date is 7 days from the current date.
*/
validUntil?: pulumi.Input<string>;
/**
* Map of tags to assign, at instance-creation time, to root and EBS volumes.
*
* > **NOTE:** Do not use `volumeTags` if you plan to manage block device tags outside the `aws.ec2.Instance` configuration, such as using `tags` in an `aws.ebs.Volume` resource attached via `aws.ec2.VolumeAttachment`. Doing so will result in resource cycling and inconsistent behavior.
*/
volumeTags?: pulumi.Input<{
[key: string]: pulumi.Input<string>;
}>;
/**
* List of security group IDs to associate with.
*/
vpcSecurityGroupIds?: pulumi.Input<pulumi.Input<string>[]>;
/**
* If set, this provider will
* wait for the Spot Request to be fulfilled, and will throw an error if the
* timeout of 10m is reached.
*/
waitForFulfillment?: pulumi.Input<boolean>;
}
/**
* The set of arguments for constructing a SpotInstanceRequest resource.
*/
export interface SpotInstanceRequestArgs {
/**
* AMI to use for the instance. Required unless `launchTemplate` is specified and the Launch Template specifes an AMI. If an AMI is specified in the Launch Template, setting `ami` will override the AMI specified in the Launch Template.
*/
ami?: pulumi.Input<string>;
/**
* Whether to associate a public IP address with an instance in a VPC.
*/
associatePublicIpAddress?: pulumi.Input<boolean>;
/**
* AZ to start the instance in.
*/
availabilityZone?: pulumi.Input<string>;
/**
* Describes an instance's Capacity Reservation targeting option. See Capacity Reservation Specification below for more details.
*/
capacityReservationSpecification?: pulumi.Input<inputs.ec2.SpotInstanceRequestCapacityReservationSpecification>;
/**
* The CPU options for the instance. See CPU Options below for more details.
*/
cpuOptions?: pulumi.Input<inputs.ec2.SpotInstanceRequestCpuOptions>;
/**
* Configuration block for customizing the credit specification of the instance. See Credit Specification below for more details. This provider will only perform drift detection of its value when present in a configuration. Removing this configuration on existing instances will only stop managing it. It will not change the configuration back to the default for the instance type.
*/
creditSpecification?: pulumi.Input<inputs.ec2.SpotInstanceRequestCreditSpecification>;
/**
* If true, enables [EC2 Instance Stop Protection](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Stop_Start.html#Using_StopProtection).
*/
disableApiStop?: pulumi.Input<boolean>;
/**
* If true, enables [EC2 Instance Termination Protection](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/terminating-instances.html#Using_ChangingDisableAPITermination).
*/
disableApiTermination?: pulumi.Input<boolean>;
/**
* One or more configuration blocks with additional EBS block devices to attach to the instance. Block device configurations only apply on resource creation. See Block Devices below for details on attributes and drift detection. When accessing this as an attribute reference, it is a set of objects.
*/
ebsBlockDevices?: pulumi.Input<pulumi.Input<inputs.ec2.SpotInstanceRequestEbsBlockDevice>[]>;
/**
* If true, the launched EC2 instance will be EBS-optimized. Note that if this is not set on an instance type that is optimized by default then this will show as disabled but if the instance type is optimized by default then there is no need to set this and there is no effect to disabling it. See the [EBS Optimized section](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSOptimized.html) of the AWS User Guide for more information.
*/
ebsOptimized?: pulumi.Input<boolean>;
/**
* Whether to assign a primary IPv6 Global Unicast Address (GUA) to the instance when launched in a dual-stack or IPv6-only subnet. A primary IPv6 address ensures a consistent IPv6 address for the instance and is automatically assigned by AWS to the ENI. Once enabled, the first IPv6 GUA becomes the primary IPv6 address and cannot be disabled. The primary IPv6 address remains until the instance is terminated or the ENI is detached. Disabling `enablePrimaryIpv6` after it has been enabled forces recreation of the instance.
*/
enablePrimaryIpv6?: pulumi.Input<boolean>;
/**
* Enable Nitro Enclaves on launched instances. See Enclave Options below for more details.
*/
enclaveOptions?: pulumi.Input<inputs.ec2.SpotInstanceRequestEnclaveOptions>;
/**
* One or more configuration blocks to customize Ephemeral (also known as "Instance Store") volumes on the instance. See Block Devices below for details. When accessing this as an attribute reference, it is a set of objects.
*/
ephemeralBlockDevices?: pulumi.Input<pulumi.Input<inputs.ec2.SpotInstanceRequestEphemeralBlockDevice>[]>;
/**
* Destroys instance even if `disableApiTermination` or `disableApiStop` is set to `true`. Defaults to `false`. Once this parameter is set to `true`, a successful `pulumi up` run before a destroy is required to update this value in the resource state. Without a successful `pulumi up` after this parameter is set, this flag will have no effect. If setting this field in the same operation that would require replacing the instance or destroying the instance, this flag will not work. Additionally when importing an instance, a successful `pulumi up` is required to set this value in state before it will take effect on a destroy operation.
*/
forceDestroy?: pulumi.Input<boolean>;
/**
* If true, wait for password data to become available and retrieve it. Useful for getting the administrator password for instances running Microsoft Windows. The password data is exported to the `passwordData` attribute. See [GetPasswordData](https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_GetPasswordData.html) for more information.
*/
getPasswordData?: pulumi.Input<boolean>;
/**
* If true, the launched EC2 instance will support hibernation.
*/
hibernation?: pulumi.Input<boolean>;
/**
* ID of a dedicated host that the instance will be assigned to. Use when an instance is to be launched on a specific dedicated host.
*/
hostId?: pulumi.Input<string>;
/**
* ARN of the host resource group in which to launch the instances. If you specify an ARN, omit the `tenancy` parameter or set it to `host`.
*/
hostResourceGroupArn?: pulumi.Input<string>;
/**
* IAM Instance Profile to launch the instance with. Specified as the name of the Instance Profile. Ensure your credentials have the correct permission to assign the instance profile according to the [EC2 documentation](http://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_use_switch-role-ec2.html#roles-usingrole-ec2instance-permissions), notably `iam:PassRole`.
*/
iamInstanceProfile?: pulumi.Input<string>;
/**
* Shutdown behavior for the instance. Amazon defaults this to `stop` for EBS-backed instances and `terminate` for instance-store instances. Cannot be set on instance-store instances. See [Shutdown Behavior](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/terminating-instances.html#Using_ChangingInstanceInitiatedShutdownBehavior) for more information.
*/
instanceInitiatedShutdownBehavior?: pulumi.Input<string>;
/**
* Indicates Spot instance behavior when it is interrupted. Valid values are `terminate`, `stop`, or `hibernate`. Default value is `terminate`.
*/
instanceInterruptionBehavior?: pulumi.Input<string>;
/**
* Instance type to use for the instance. Required unless `launchTemplate` is specified and the Launch Template specifies an instance type. If an instance type is specified in the Launch Template, setting `instanceType` will override the instance type specified in the Launch Template. Updates to this field will trigger a stop/start of the EC2 instance.
*/
instanceType?: pulumi.Input<string>;
/**
* Number of IPv6 addresses to associate with the primary network interface. Amazon EC2 chooses the IPv6 addresses from the range of your subnet.
*/
ipv6AddressCount?: pulumi.Input<number>;
/**
* Specify one or more IPv6 addresses from the range of the subnet to associate with the primary network interface
*/
ipv6Addresses?: pulumi.Input<pulumi.Input<string>[]>;
/**
* Key name of the Key Pair to use for the instance; which can be managed using the `aws.ec2.KeyPair` resource.
*/
keyName?: pulumi.Input<string>;
/**
* A launch group is a group of spot instances that launch together and terminate together.
* If left empty instances are launched and terminated individually.
*/
launchGroup?: pulumi.Input<string>;
/**
* Specifies a Launch Template to configure the instance. Parameters configured on this resource will override the corresponding parameters in the Launch Template. See Launch Template Specification below for more details.
*/
launchTemplate?: pulumi.Input<inputs.ec2.SpotInstanceRequestLaunchTemplate>;
/**
* Maintenance and recovery options for the instance. See Maintenance Options below for more details.
*/
maintenanceOptions?: pulumi.Input<inputs.ec2.SpotInstanceRequestMaintenanceOptions>;
/**
* Customize the metadata options of the instance. See Metadata Options below for more details.
*/
metadataOptions?: pulumi.Input<inputs.ec2.SpotInstanceRequestMetadataOptions>;
/**
* If true, the launched EC2 instance will have detailed monitoring enabled. (Available since v0.6.0)
*/
monitoring?: pulumi.Input<boolean>;
/**
* Customize network interfaces to be attached at instance boot time. See Network Interfaces below for more details.
*
* @deprecated network_interface is deprecated. To specify the primary network interface, use primaryNetworkInterface instead. To attach additional network interfaces, use the aws.ec2.NetworkInterfaceAttachment resource.
*/
networkInterfaces?: pulumi.Input<pulumi.Input<inputs.ec2.SpotInstanceRequestNetworkInterface>[]>;
/**
* Placement Group to start the instance in. Conflicts with `placementGroupId`.
*/
placementGroup?: pulumi.Input<string>;
/**
* Placement Group ID to start the instance in. Conflicts with `placementGroup`.
*/
placementGroupId?: pulumi.Input<string>;
/**
* Number of the partition the instance is in. Valid only if the `aws.ec2.PlacementGroup` resource's `strategy` argument is set to `"partition"`.
*/
placementPartitionNumber?: pulumi.Input<number>;
/**
* Options for the instance hostname. The default values are inherited from the subnet. See Private DNS Name Options below for more details.
*/
privateDnsNameOptions?: pulumi.Input<inputs.ec2.SpotInstanceRequestPrivateDnsNameOptions>;
/**
* Private IP address to associate with the instance in a VPC.
*/
privateIp?: pulumi.Input<string>;
/**
* Region where this resource will be [managed](https://docs.aws.amazon.com/general/latest/gr/rande.html#regional-endpoints). Defaults to the Region set in the provider configuration.
*/
region?: pulumi.Input<string>;
/**
* Configuration block to customize details about the root block device of the instance. See Block Devices below for details. When accessing this as an attribute reference, it is a list containing one object.
*/
rootBlockDevice?: pulumi.Input<inputs.ec2.SpotInstanceRequestRootBlockDevice>;
/**
* List of secondary private IPv4 addresses to assign to the instance's primary network interface (eth0) in a VPC. Can only be assigned to the primary network interface (eth0) attached at instance creation, not a pre-existing network interface i.e., referenced in a `networkInterface` block. Refer to the [Elastic network interfaces documentation](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-eni.html#AvailableIpPerENI) to see the maximum number of private IP addresses allowed per instance type.
*/
secondaryPrivateIps?: pulumi.Input<pulumi.Input<string>[]>;
/**
* List of security group names to associate with.
*
* > **NOTE:** If you are creating Instances in a VPC, use `vpcSecurityGroupIds` instead.
*/
securityGroups?: pulumi.Input<pulumi.Input<string>[]>;
/**
* Controls if traffic is routed to the instance when the destination address does not match the instance. Used for NAT or VPNs. Defaults true.
*/
sourceDestCheck?: pulumi.Input<boolean>;
/**
* The maximum price to request on the spot market.
*/
spotPrice?: pulumi.Input<string>;
/**
* If set to `one-time`, after
* the instance is terminated, the spot request will be closed.
*/
spotType?: pulumi.Input<string>;
/**
* VPC Subnet ID to launch in.
*/
subnetId?: pulumi.Input<string>;
/**
* Map of tags to assign to the resource. Note that these tags apply to the instance and not block storage devices. If configured with a provider `defaultTags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.
*/
tags?: pulumi.Input<{
[key: string]: pulumi.Input<string>;
}>;
/**
* Tenancy of the instance (if the instance is running in a VPC). An instance with a tenancy of `dedicated` runs on single-tenant hardware. The `host` tenancy is not supported for the import-instance command. Valid values are `default`, `dedicated`, and `host`.
*/
tenancy?: pulumi