Skip to content

Commit

Permalink
README.md: quote terraform_version attribute value (#279)
Browse files Browse the repository at this point in the history
Co-authored-by: Austin Valle <austinvalle@gmail.com>
  • Loading branch information
jsavikko and austinvalle authored Oct 17, 2023
1 parent e192cfc commit f231b15
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ A specific version of Terraform CLI can be installed:
steps:
- uses: hashicorp/setup-terraform@v2
with:
terraform_version: 1.1.7
terraform_version: "1.1.7"
```
Credentials for Terraform Cloud ([app.terraform.io](https://app.terraform.io/)) can be configured:
Expand Down Expand Up @@ -248,7 +248,7 @@ The action supports the following inputs:
place within the credentials block of the Terraform CLI configuration file.
- `terraform_version` - (optional) The version of Terraform CLI to install. Instead of a full version string,
you can also specify a constraint string (see [Semver Ranges](https://www.npmjs.com/package/semver#ranges)
for available range specifications). Examples are: `<1.2.0`, `~1.1.0`, `1.1.7` (all three installing
for available range specifications). Examples are: `"<1.2.0"`, `"~1.1.0"`, `"1.1.7"` (all three installing
the latest available `1.1` version). Prerelease versions can be specified and a range will stay within the
given tag such as `beta` or `rc`. If no version is given, it will default to `latest`.
- `terraform_wrapper` - (optional) Whether to install a wrapper to wrap subsequent calls of
Expand Down

0 comments on commit f231b15

Please sign in to comment.