aws_spot_datafeed_subscription
-> Note: There is only a single subscription allowed per account.
To help you understand the charges for your Spot instances, Amazon EC2 provides a data feed that describes your Spot instance usage and pricing. This data feed is sent to an Amazon S3 bucket that you specify when you subscribe to the data feed.
Example Usage
resource "aws_s3_bucket" "default" {
bucket = "tf-spot-datafeed"
}
resource "aws_spot_datafeed_subscription" "default" {
bucket = "${aws_s3_bucket.default.bucket}"
}
Argument Reference
bucket
- (Required) The Amazon S3 bucket in which to store the Spot instance data feed.prefix
- (Optional) A prefix for the data feed file names.
Import
A Spot Datafeed Subscription can be imported using the word spot-datafeed-subscription
, e.g.
$ terraform import aws_spot_datafeed_subscription.mysubscription spot-datafeed-subscription
See the source of this document at Terraform.io