Minor typos
This commit is contained in:
parent
5669185e54
commit
cab71c98cd
|
@ -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: 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: 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 `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 `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: 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))
|
* provider/aws: Set DynamoDB Table ARN after creation ([#3500](https://github.com/hashicorp/terraform/issues/3500))
|
||||||
|
|
|
@ -539,7 +539,7 @@ func resourceServiceV1() *schema.Resource {
|
||||||
Type: schema.TypeBool,
|
Type: schema.TypeBool,
|
||||||
Optional: true,
|
Optional: true,
|
||||||
Default: false,
|
Default: false,
|
||||||
Description: "Should this VCL configuation be the main configuration",
|
Description: "Should this VCL configuration be the main configuration",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
|
@ -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
|
with access to a default VPC. For EC2 Classic users, please use `t1.micro` for
|
||||||
`instance_type`, and `ami-408c7f28` for the `ami`.
|
`instance_type`, and `ami-408c7f28` for the `ami`.
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue