Commit 463cad05 authored by Cédric OLIVIER's avatar Cédric OLIVIER
Browse files

doc(typo): fix typo in documentation [skip-ci]

parent 9daa42e9
Loading
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -418,7 +418,7 @@ Here are variables supported to configure the production environment:
| `TF_PROD_PLAN_OPTS`    | Terraform extra [plan options](https://developer.hashicorp.com/terraform/cli/commands/plan) for `production` env | _none_ |
| `TF_PROD_APPLY_OPTS`   | Terraform extra [apply options](https://developer.hashicorp.com/terraform/cli/commands/apply) for `production` env | `$TF_APPLY_OPTS` |

### `tflint` job
### `tf-tflint` job

[tflint](https://github.com/terraform-linters/tflint) is a Terraform Linter and uses the following variables:

@@ -485,7 +485,7 @@ resource "aws_s3_bucket" "foo-bucket" {
}
```

### `infracost` job
### `tf-infracost` job

[Infracost](https://github.com/infracost/infracost) shows cloud cost estimates for infrastructure-as-code projects and uses the following variables:

@@ -515,7 +515,7 @@ Save the API key as :lock: `INFRACOST_API_KEY` GitLab secret variable.

Set `INFRACOST_CURRENCY` variable to set currency [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217#Active_codes) prices should be converted to. Defaults to USD.

### `tf fmt` job
### `tf-fmt` job

The terraform [`fmt` command](https://developer.hashicorp.com/terraform/cli/commands/fmt) is usually used to format Terraform source files to a canonical format and style.

@@ -526,7 +526,7 @@ This job uses the _check_ mode, and fails if any file appears not being properly
| `TF_FMT_ENABLED`     | Set to `true` to enable terraform fmt                                                      | _none_ (disabled)    |
| `TF_FMT_ARGS`        | terraform fmt [options](https://developer.hashicorp.com/terraform/cli/commands/fmt#usage)                   | `-diff -recursive`   |

### `tf validate` job
### `tf-validate` job

The terraform [`validate` command](https://developer.hashicorp.com/terraform/cli/commands/validate) is usually used to validate the configuration files in a directory. It is very useful to check a terraform module.

+8 −8
Original line number Diff line number Diff line
@@ -105,8 +105,8 @@
      ]
    },
    {
      "id": "infracost",
      "name": "infracost",
      "id": "tf-infracost",
      "name": "tf-infracost",
      "description": "Shows cloud cost estimates for infrastructure-as-code projects",
      "enable_with": "TF_INFRACOST_ENABLED",
      "variables": [
@@ -134,8 +134,8 @@
      ]
    },
    {
      "id": "tflint",
      "name": "tflint",
      "id": "tf-tflint",
      "name": "tf-tflint",
      "description": "Analyse your Terraform code with [tflint](https://github.com/terraform-linters/tflint)",
      "disable_with": "TF_TFLINT_DISABLED",
      "variables": [
@@ -153,8 +153,8 @@
      ]
    },
    {
      "id": "tffmt",
      "name": "tffmt",
      "id": "tf-fmt",
      "name": "tf-fmt",
      "description": "Check your Terraform code with [tffmt](https://developer.hashicorp.com/terraform/cli/commands/fmt#usage)",
      "enable_with": "TF_FMT_ENABLED",
      "variables": [
@@ -166,8 +166,8 @@
      ]
    },
    {
      "id": "tfvalidate",
      "name": "tfvalidate",
      "id": "tf-validate",
      "name": "tf-validate",
      "description": "Check your Terraform code with [tfvalidate](https://developer.hashicorp.com/terraform/cli/commands/validate#usage)",
      "enable_with": "TF_VALIDATE_ENABLED",
      "variables": []