Skip to content

Commit

Permalink
docs/provider: Adjust remaining hcl code blocks to terraform
Browse files Browse the repository at this point in the history
  • Loading branch information
bflad committed Mar 19, 2021
1 parent 3d3d3c6 commit 7141d1c
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Provides details about CodeStar Connection.

## Example Usage

```hcl
```terraform
data "aws_codestarconnections_connection" "example" {
arn = aws_codestarconnections_connection.example.arn
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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" {
Expand Down
2 changes: 1 addition & 1 deletion website/docs/d/kinesis_stream_consumer.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions website/docs/index.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {
Expand Down Expand Up @@ -424,7 +424,7 @@ vpc_all_tags = tomap({

Example: Resource with tags and provider default tags

```hcl
```terraform
provider "aws" {
default_tags {
tags = {
Expand Down Expand Up @@ -469,7 +469,7 @@ vpc_resource_level_tags = tomap({

Example: Resource overriding provider default tags

```hcl
```terraform
provider "aws" {
default_tags {
tags = {
Expand Down
2 changes: 1 addition & 1 deletion website/docs/r/elasticache_replication_group.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 7141d1c

Please sign in to comment.