Skip to content

Commit

Permalink
make docs markdownlint compliant
Browse files Browse the repository at this point in the history
  • Loading branch information
0xch4z committed Mar 4, 2020
1 parent 0bdc4bb commit 7e70186
Show file tree
Hide file tree
Showing 14 changed files with 15 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .markdownlint.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Configuration for markdownlint
# https://github.com/DavidAnson/markdownlint#configuration

default: true

# Disabled Rules
# https://github.com/DavidAnson/markdownlint/blob/master/doc/Rules.md
line-length: false
fenced-code-language: false
2 changes: 1 addition & 1 deletion website/docs/d/account.html.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,4 +50,4 @@ The Linode Account resource exports the following attributes:

* `zip` - The zip code of this Account's billing address.

* `balance` - This Account's balance, in US dollars.
* `balance` - This Account's balance, in US dollars.
2 changes: 1 addition & 1 deletion website/docs/d/domain.html.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ The Linode Domain resource exports the following attributes:
* `ttl_sec` - 'Time to Live'-the amount of time in seconds that this Domain's records may be cached by resolvers or other domain servers.

* `retry_sec` - The interval, in seconds, at which a failed refresh should be retried.
*

* `expire_sec` - The amount of time in seconds that may pass before this Domain is no longer authoritative.

* `refresh_sec` - The amount of time in seconds before this Domain should be refreshed.
Expand Down
2 changes: 1 addition & 1 deletion website/docs/d/image.html.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,4 @@ The Linode Image resource exports the following attributes:

* `type` - How the Image was created. Manual Images can be created at any time. image"Automatic" Images are created automatically from a deleted Linode.

* `vendor` - The upstream distribution vendor. `None` for private Images.
* `vendor` - The upstream distribution vendor. `None` for private Images.
2 changes: 1 addition & 1 deletion website/docs/d/object_storage_cluster.html.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ data "linode_object_storage_cluster" "primary" {

The following arguments are supported:

* `id` - (Required) The unique ID of this cluster.
* `id` - (Required) The unique ID of this cluster.

## Attributes

Expand Down
2 changes: 1 addition & 1 deletion website/docs/d/profile.html.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,4 +56,4 @@ The Linode Profile resource exports the following attributes:

* `referrals.0.code` - The Profile referral code. If new accounts use this when signing up for Linode, referring account will receive credit.

* `referrals.0.url` - The referral URL.
* `referrals.0.url` - The referral URL.
2 changes: 1 addition & 1 deletion website/docs/d/sshkey.html.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@ In addition to all arguments above, the following attributes are exported:

- `ssh_key` - The public SSH Key, which is used to authenticate to the root user of the Linodes you deploy.

- `created` - The date this key was added.
- `created` - The date this key was added.
2 changes: 1 addition & 1 deletion website/docs/d/user.html.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@ The Linode User resource exports the following attributes:

* `email` - The email address for this User, for account management communications, and may be used for other communications as configured.

* `restricted` - If true, this User must be granted access to perform actions or access entities on this Account.
* `restricted` - If true, this User must be granted access to perform actions or access entities on this Account.
1 change: 1 addition & 0 deletions website/docs/r/domain_record.html.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ The following arguments are supported:
* `record_type` - (Required) The type of Record this is in the DNS system. For example, A records associate a domain name with an IPv4 address, and AAAA records associate a domain name with an IPv6 address. *Changing `record_type` forces the creation of a new Linode Domain Record.*.

* `target` - (Required) The target for this Record. This field's actual usage depends on the type of record this represents. For A and AAAA records, this is the address the named Domain should resolve to.

- - -

* `ttl_sec` - (Optional) 'Time to Live' - the amount of time in seconds that this Domain's records may be cached by resolvers or other domain servers. Valid values are 300, 3600, 7200, 14400, 28800, 57600, 86400, 172800, 345600, 604800, 1209600, and 2419200 - any other value will be rounded to the nearest valid value.
Expand Down
2 changes: 1 addition & 1 deletion website/docs/r/nodebalancer.html.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,4 +61,4 @@ Linodes NodeBalancers can be imported using the Linode NodeBalancer `id`, e.g.
terraform import linode_nodebalancer.mynodebalancer 1234567
```

The Linode Guide, [Import Existing Infrastructure to Terraform](https://www.linode.com/docs/applications/configuration-management/import-existing-infrastructure-to-terraform/), offers resource importing examples for NodeBalancers and other Linode resource types.
The Linode Guide, [Import Existing Infrastructure to Terraform](https://www.linode.com/docs/applications/configuration-management/import-existing-infrastructure-to-terraform/), offers resource importing examples for NodeBalancers and other Linode resource types.
2 changes: 1 addition & 1 deletion website/docs/r/nodebalancer_config.html.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,4 +94,4 @@ NodeBalancer Configs can be imported using the NodeBalancer `nodebalancer_id` fo
terraform import linode_nodebalancer_config.http-foobar 1234567,7654321
```

The Linode Guide, [Import Existing Infrastructure to Terraform](https://www.linode.com/docs/applications/configuration-management/import-existing-infrastructure-to-terraform/), offers resource importing examples for NodeBalancer Configs and other Linode resource types.
The Linode Guide, [Import Existing Infrastructure to Terraform](https://www.linode.com/docs/applications/configuration-management/import-existing-infrastructure-to-terraform/), offers resource importing examples for NodeBalancer Configs and other Linode resource types.
7 changes: 3 additions & 4 deletions website/docs/r/object_storage_bucket.html.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ The following example shows how one might use this resource to create an Object

```hcl
data "linode_object_storage_cluster" "primary" {
id = "us-east-1"
id = "us-east-1"
}
resource "linode_object_storage_bucket" "foobar" {
cluster = data.linode_object_storage_cluster.primary.id
label = "%s"
cluster = data.linode_object_storage_cluster.primary.id
label = "%s"
}
```
Expand All @@ -33,4 +33,3 @@ The following arguments are supported:
* `cluster` - (Required) The cluster of the Linode Object Storage Bucket.

* `label` - (Required) The label of the Linode Object Storage Bucket.

1 change: 0 additions & 1 deletion website/docs/r/sshkey.html.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ The following arguments are supported:

* `ssh_key` - The public SSH Key, which is used to authenticate to the root user of the Linodes you deploy.


## Attributes

This resource exports the following attributes:
Expand Down
2 changes: 1 addition & 1 deletion website/docs/r/volume.html.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,4 +91,4 @@ Linodes Volumes can be imported using the Linode Volume `id`, e.g.
terraform import linode_volume.myvolume 1234567
```

The Linode Guide, [Import Existing Infrastructure to Terraform](https://www.linode.com/docs/applications/configuration-management/import-existing-infrastructure-to-terraform/), offers resource importing examples for Block Storage Volumes and other Linode resource types.
The Linode Guide, [Import Existing Infrastructure to Terraform](https://www.linode.com/docs/applications/configuration-management/import-existing-infrastructure-to-terraform/), offers resource importing examples for Block Storage Volumes and other Linode resource types.

0 comments on commit 7e70186

Please sign in to comment.