Merge pull request #17087 from hashicorp/f-versioning-docs-updates
Documentation: Add version specifier information to provider version docs and clarify pessimistic specifier
This commit is contained in:
commit
1ff724f333
|
@ -110,6 +110,16 @@ This special argument applies to _all_ providers.
|
||||||
view the specified version constraints for all providers used in the
|
view the specified version constraints for all providers used in the
|
||||||
current configuration.
|
current configuration.
|
||||||
|
|
||||||
|
The `version` attribute value may either be a single explicit version or
|
||||||
|
a version constraint expression. Constraint expressions use the following
|
||||||
|
syntax to specify a _range_ of versions that are acceptable:
|
||||||
|
|
||||||
|
* `>= 1.2.0`: version 1.2.0 or newer
|
||||||
|
* `<= 1.2.0`: version 1.2.0 or older
|
||||||
|
* `~> 1.2.0`: any non-beta version `>= 1.2.0` and `< 1.3.0`, e.g. `1.2.X`
|
||||||
|
* `~> 1.2`: any non-beta version `>= 1.2.0` and `< 2.0.0`, e.g. `1.X.Y`
|
||||||
|
* `>= 1.0.0, <= 2.0.0`: any version between 1.0.0 and 2.0.0 inclusive
|
||||||
|
|
||||||
When `terraform init` is re-run with providers already installed, it will
|
When `terraform init` is re-run with providers already installed, it will
|
||||||
use an already-installed provider that meets the constraints in preference
|
use an already-installed provider that meets the constraints in preference
|
||||||
to downloading a new version. To upgrade to the latest acceptable version
|
to downloading a new version. To upgrade to the latest acceptable version
|
||||||
|
|
|
@ -93,7 +93,8 @@ syntax to specify a _range_ of versions that are acceptable:
|
||||||
|
|
||||||
* `>= 1.2.0`: version 1.2.0 or newer
|
* `>= 1.2.0`: version 1.2.0 or newer
|
||||||
* `<= 1.2.0`: version 1.2.0 or older
|
* `<= 1.2.0`: version 1.2.0 or older
|
||||||
* `~> 1.2`: any non-beta patch release within the `1.2` range
|
* `~> 1.2.0`: any non-beta version `>= 1.2.0` and `< 1.3.0`, e.g. `1.2.X`
|
||||||
|
* `~> 1.2`: any non-beta version `>= 1.2.0` and `< 2.0.0`, e.g. `1.X.Y`
|
||||||
* `>= 1.0.0, <= 2.0.0`: any version between 1.0.0 and 2.0.0 inclusive
|
* `>= 1.0.0, <= 2.0.0`: any version between 1.0.0 and 2.0.0 inclusive
|
||||||
|
|
||||||
When depending on third-party modules, references to specific versions are
|
When depending on third-party modules, references to specific versions are
|
||||||
|
|
Loading…
Reference in New Issue