diff --git a/CHANGELOG.md b/CHANGELOG.md index a5aa6ee8c..e737dd658 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1334,7 +1334,7 @@ IMPROVEMENTS: * provider/aws: read `iam_instance_profile` for `aws_instance` and save to state ([#3167](https://github.com/hashicorp/terraform/issues/3167)) * provider/aws: allow `instance` to be computed in `aws_eip` ([#3036](https://github.com/hashicorp/terraform/issues/3036)) * provider/aws: Add `versioning` option to `aws_s3_bucket` ([#2942](https://github.com/hashicorp/terraform/issues/2942)) - * provider/aws: Add `configuation_endpoint` to `aws_elasticache_cluster` ([#3250](https://github.com/hashicorp/terraform/issues/3250)) + * provider/aws: Add `configuration_endpoint` to `aws_elasticache_cluster` ([#3250](https://github.com/hashicorp/terraform/issues/3250)) * provider/aws: Add validation for `app_cookie_stickiness_policy.name` ([#3277](https://github.com/hashicorp/terraform/issues/3277)) * provider/aws: Add validation for `db_parameter_group.name` ([#3279](https://github.com/hashicorp/terraform/issues/3279)) * provider/aws: Set DynamoDB Table ARN after creation ([#3500](https://github.com/hashicorp/terraform/issues/3500)) diff --git a/builtin/providers/fastly/resource_fastly_service_v1.go b/builtin/providers/fastly/resource_fastly_service_v1.go index 94c72f666..2d1f8a4ee 100644 --- a/builtin/providers/fastly/resource_fastly_service_v1.go +++ b/builtin/providers/fastly/resource_fastly_service_v1.go @@ -539,7 +539,7 @@ func resourceServiceV1() *schema.Resource { Type: schema.TypeBool, Optional: true, Default: false, - Description: "Should this VCL configuation be the main configuration", + Description: "Should this VCL configuration be the main configuration", }, }, }, diff --git a/website/source/intro/getting-started/build.html.md b/website/source/intro/getting-started/build.html.md index 6e89f173f..95982adcc 100644 --- a/website/source/intro/getting-started/build.html.md +++ b/website/source/intro/getting-started/build.html.md @@ -64,7 +64,7 @@ resource "aws_instance" "example" { } ``` -~> **Note**: The above configuation is designed to work on most EC2 accounts, +~> **Note**: The above configuration is designed to work on most EC2 accounts, with access to a default VPC. For EC2 Classic users, please use `t1.micro` for `instance_type`, and `ami-408c7f28` for the `ami`.