Skip to content

Commit

Permalink
Merge pull request #2675 from kei-q/enable-syntax-highlight
Browse files Browse the repository at this point in the history
Update docs for syntax lighlighting
  • Loading branch information
tombuildsstuff authored Dec 15, 2017
2 parents eb1658b + 285fca8 commit 6bd9216
Show file tree
Hide file tree
Showing 16 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion website/docs/d/db_snapshot.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Use this data source to get information about a DB Snapshot for use when provisi

## Example Usage

```
```hcl
resource "aws_db_instance" "default" {
allocated_storage = 10
engine = "mysql"
Expand Down
2 changes: 1 addition & 1 deletion website/docs/d/kinesis_stream.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ For more details, see the [Amazon Kinesis Documentation][1].

## Example Usage

```
```hcl
data "aws_kinesis_stream" "stream" {
name = "stream-name"
}
Expand Down
2 changes: 1 addition & 1 deletion website/docs/r/api_gateway_method.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ The following arguments are supported:
* `request_validator_id` - (Optional) The ID of a `aws_api_gateway_request_validator`
* `request_parameters` - (Optional) A map of request query string parameters and headers that should be passed to the integration.
For example:
```
```hcl
request_parameters = {
"method.request.header.X-Some-Header" = true,
"method.request.querystring.some-query-param" = true,
Expand Down
2 changes: 1 addition & 1 deletion website/docs/r/autoscaling_group.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ EOF

## Interpolated tags

```
```hcl
variable extra_tags {
default = [
{
Expand Down
2 changes: 1 addition & 1 deletion website/docs/r/cognito_identity_pool.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Provides an AWS Cognito Identity Pool.

## Example Usage

```
```hcl
resource "aws_iam_saml_provider" "default" {
name = "my-saml-provider"
saml_metadata_document = "${file("saml-metadata.xml")}"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Provides an AWS Cognito Identity Pool Roles Attachment.

## Example Usage

```
```hcl
resource "aws_cognito_identity_pool" "main" {
identity_pool_name = "identity pool"
allow_unauthenticated_identities = false
Expand Down
2 changes: 1 addition & 1 deletion website/docs/r/db_snapshot.html.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Creates a Snapshot of an DB Instance.

## Example Usage

```
```hcl
resource "aws_db_instance" "bar" {
allocated_storage = 10
engine = "MySQL"
Expand Down
2 changes: 1 addition & 1 deletion website/docs/r/default_subnet.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ into management.

Basic usage with tags:

```
```hcl
resource "aws_default_subnet" "default_az1" {
availability_zone = "us-west-2a"
Expand Down
2 changes: 1 addition & 1 deletion website/docs/r/default_vpc.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ into management.

Basic usage with tags:

```
```hcl
resource "aws_default_vpc" "default" {
tags {
Name = "Default VPC"
Expand Down
2 changes: 1 addition & 1 deletion website/docs/r/default_vpc_dhcp_options.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ into management.

Basic usage with tags:

```
```hcl
resource "aws_default_vpc_dhcp_options" "default" {
tags {
Name = "Default DHCP Option Set"
Expand Down
2 changes: 1 addition & 1 deletion website/docs/r/ecs_task_definition.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ which is shown below, and its content is going to be passed directly into the
`container_definitions` attribute as a string. Please note that this example
contains only a small subset of the available parameters.

```
```json
[
{
"name": "first",
Expand Down
2 changes: 1 addition & 1 deletion website/docs/r/emr_cluster.html.md
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ boot an example EMR Cluster. It is not meant to display best practices. Please
use at your own risk.


```
```hcl
provider "aws" {
region = "us-west-2"
}
Expand Down
2 changes: 1 addition & 1 deletion website/docs/r/flow_log.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ description: |-
Provides a VPC/Subnet/ENI Flow Log to capture IP traffic for a specific network
interface, subnet, or VPC. Logs are sent to a CloudWatch Log Group.

```
```hcl
resource "aws_flow_log" "test_flow_log" {
log_group_name = "${aws_cloudwatch_log_group.test_log_group.name}"
iam_role_arn = "${aws_iam_role.test_role.arn}"
Expand Down
2 changes: 1 addition & 1 deletion website/docs/r/network_interface_attachment.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Attach an Elastic network interface (ENI) resource with EC2 instance.

## Example Usage

```
```hcl
resource "aws_network_interface_attachment" "test" {
instance_id = "${aws_instance.test.id}"
network_interface_id = "${aws_network_interface.test.id}"
Expand Down
2 changes: 1 addition & 1 deletion website/docs/r/wafregional_byte_match_set.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Provides a WAF Regional Byte Match Set Resource for use with Application Load Ba

## Example Usage

```
```hcl
resource "aws_wafregional_byte_match_set" "byte_set" {
name = "tf_waf_byte_match_set"
byte_match_tuple {
Expand Down
2 changes: 1 addition & 1 deletion website/docs/r/wafregional_ipset.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Provides a WAF Regional IPSet Resource for use with Application Load Balancer.

## Example Usage

```
```hcl
resource "aws_wafregional_ipset" "ipset" {
name = "tfIPSet"
ip_set_descriptor {
Expand Down

0 comments on commit 6bd9216

Please sign in to comment.