Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Documentation: Replace aws_ec2_instance_spot_price by aws_ec2_spot_price #14680

Merged
merged 1 commit into from
Aug 17, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions website/docs/d/ec2_spot_price.html.markdown
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
---
subcategory: "EC2"
layout: "aws"
page_title: "AWS: aws_ec2_instance_spot_price"
page_title: "AWS: aws_ec2_spot_price"
description: |-
Information about most recent Spot Price for a given EC2 instance.
---

# Data Source: aws_ec2_instance_spot_price
# Data Source: aws_ec2_spot_price

Information about most recent Spot Price for a given EC2 instance.

## Example Usage

```hcl
data "aws_ec2_instance_spot_price" "example" {
data "aws_ec2_spot_price" "example" {
instance_type = "t3.medium"
availability_zone = "us-west-2a"

Expand Down