From 7141d1c315dc0c221979f0a4f8855a13b545dbaf Mon Sep 17 00:00:00 2001 From: Brian Flad Date: Fri, 19 Mar 2021 16:25:37 -0400 Subject: [PATCH] docs/provider: Adjust remaining hcl code blocks to terraform --- website/docs/d/codestarconnections_connection.html.markdown | 2 +- .../docs/d/ec2_transit_gateway_route_tables.html.markdown | 2 +- website/docs/d/kinesis_stream_consumer.html.markdown | 2 +- website/docs/index.html.markdown | 6 +++--- website/docs/r/elasticache_replication_group.html.markdown | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/website/docs/d/codestarconnections_connection.html.markdown b/website/docs/d/codestarconnections_connection.html.markdown index fea4e18f77a0..acfc225d04b5 100644 --- a/website/docs/d/codestarconnections_connection.html.markdown +++ b/website/docs/d/codestarconnections_connection.html.markdown @@ -12,7 +12,7 @@ Provides details about CodeStar Connection. ## Example Usage -```hcl +```terraform data "aws_codestarconnections_connection" "example" { arn = aws_codestarconnections_connection.example.arn } diff --git a/website/docs/d/ec2_transit_gateway_route_tables.html.markdown b/website/docs/d/ec2_transit_gateway_route_tables.html.markdown index 9d1f3dbe74a1..f81312f47eaf 100644 --- a/website/docs/d/ec2_transit_gateway_route_tables.html.markdown +++ b/website/docs/d/ec2_transit_gateway_route_tables.html.markdown @@ -14,7 +14,7 @@ Provides information for multiple EC2 Transit Gateway Route Tables, such as thei The following shows outputing all Transit Gateway Route Table Ids. -```hcl +```terraform data "aws_ec2_transit_gateway_route_tables" "example" {} output "example" { diff --git a/website/docs/d/kinesis_stream_consumer.html.markdown b/website/docs/d/kinesis_stream_consumer.html.markdown index eec1bd5acf65..bd2c411976f5 100644 --- a/website/docs/d/kinesis_stream_consumer.html.markdown +++ b/website/docs/d/kinesis_stream_consumer.html.markdown @@ -14,7 +14,7 @@ For more details, see the [Amazon Kinesis Stream Consumer Documentation][1]. ## Example Usage -```hcl +```terraform data "aws_kinesis_stream_consumer" "example" { name = "example-consumer" stream_arn = aws_kinesis_stream.example.arn diff --git a/website/docs/index.html.markdown b/website/docs/index.html.markdown index 05e3dc88d9be..28105953980c 100644 --- a/website/docs/index.html.markdown +++ b/website/docs/index.html.markdown @@ -386,7 +386,7 @@ The `assume_role` configuration block supports the following optional arguments: Example: Resource with provider default tags -```hcl +```terraform provider "aws" { default_tags { tags = { @@ -424,7 +424,7 @@ vpc_all_tags = tomap({ Example: Resource with tags and provider default tags -```hcl +```terraform provider "aws" { default_tags { tags = { @@ -469,7 +469,7 @@ vpc_resource_level_tags = tomap({ Example: Resource overriding provider default tags -```hcl +```terraform provider "aws" { default_tags { tags = { diff --git a/website/docs/r/elasticache_replication_group.html.markdown b/website/docs/r/elasticache_replication_group.html.markdown index 2349b70560a7..dcd4a62bae5c 100644 --- a/website/docs/r/elasticache_replication_group.html.markdown +++ b/website/docs/r/elasticache_replication_group.html.markdown @@ -107,7 +107,7 @@ for full details on using Replication Groups. A Global Replication Group can have one one two secondary Replication Groups in different regions. These are added to an existing Global Replication Group. -```hcl +```terraform resource "aws_elasticache_replication_group" "secondary" { replication_group_id = "example-secondary" replication_group_description = "secondary replication group"