Providers
Note: This page is about Terraform 0.11 and earlier. For Terraform 0.12 and later, see Configuration Language: Providers.
Providers are responsible in Terraform for managing the lifecycle of a resource: create, read, update, delete.
Most providers require some sort of configuration to provide
authentication information, endpoint URLs, etc. Where explicit configuration
is required, a provider
block is used within the configuration as
illustrated in the following sections.
By default, resources are matched with provider configurations by matching
the start of the resource name. For example, a resource of type
vsphere_virtual_machine
is associated with a provider called vsphere
.
This page assumes you're familiar with the configuration syntax already.
Example
A provider configuration looks like the following:
Description
A provider
block represents a configuration for the provider named in its
header. For example, provider "aws"
above is a configuration for the
aws
provider.
Within the block body (between { }
) is configuration for the provider.
The configuration is dependent on the type. Consult the provider's documentation for details.
in each provider's documentation.
The arguments alias
and version
, if present, are special arguments
handled by Terraform Core for their respective features described above. All
other arguments are defined by the provider itself.
A provider
block may be omitted if its body would be empty. Using a resource
in configuration implicitly creates an empty provider configuration for it
unless a provider
block is explicitly provided.
Initialization
Each time a new provider is added to configuration -- either explicitly via
a provider
block or by adding a resource from that provider -- it's necessary
to initialize that provider before use. Initialization downloads and installs
the provider's plugin and prepares it to be used.
Provider initialization is one of the actions of terraform init
. Running
this command will download and initialize any providers that are not already
initialized.
Providers downloaded by terraform init
are only installed for the current
working directory; other working directories can have their own installed
provider versions.
Note that terraform init
cannot automatically download providers that are not
distributed by HashiCorp. See Third-party Plugins below
for installation instructions.
For more information, see
the terraform init
command.
Provider Versions
Providers are released on a separate rhythm from Terraform itself, and thus
have their own version numbers. For production use, it is recommended to
constrain the acceptable provider versions via configuration, to ensure that
new versions with breaking changes will not be automatically installed by
terraform init
in future.
When terraform init
is run without provider version constraints, it
prints a suggested version constraint string for each provider:
To constrain the provider version as suggested, add a version
argument to
the provider configuration block:
This special argument applies to all providers.
terraform providers
can be used to
view the specified version constraints for all providers used in the
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
use an already-installed provider that meets the constraints in preference
to downloading a new version. To upgrade to the latest acceptable version
of each provider, run terraform init -upgrade
. This command also upgrades
to the latest versions of all Terraform modules.
Multiple Provider Instances
You can define multiple configurations for the same provider in order to support multiple regions, multiple hosts, etc. The primary use case for this is using multiple cloud regions. Other use-cases include targeting multiple Docker hosts, multiple Consul hosts, etc.
To include multiple configurations for a given provider, include multiple
provider
blocks with the same provider name, but set the alias
field to an
instance name to use for each additional instance. For example:
A provider
block with out alias
set is known as the default provider
configuration. When alias
is set, it creates an additional provider
configuration. For providers that have no required configuration arguments, the
implied empty configuration is also considered to be a default provider
configuration.
Resources are normally associated with the default provider configuration
inferred from the resource type name. For example, a resource of type
aws_instance
uses the default (un-aliased) aws
provider configuration
unless otherwise stated.
The provider
argument within any resource
or data
block overrides this
default behavior and allows an additional provider configuration to be
selected using its alias:
The value of the provider
argument is always the provider name and an
alias separated by a period, such as "aws.west"
above.
Provider configurations may also be passed from a parent module into a child module, as described in Providers within Modules.
Interpolation
Provider configurations may use interpolation syntax to allow dynamic configuration:
Interpolation is supported only for the per-provider configuration arguments.
It is not supported for the special alias
and version
arguments.
Although in principle it is possible to use any interpolation expression within a provider configuration argument, providers must be configurable to perform almost all operations within Terraform, and so it is not possible to use expressions whose value cannot be known until after configuration is applied, such as the id of a resource.
It is always valid to use input variables
and data sources whose configurations
do not in turn depend on as-yet-unknown values. Local values
may also be used, but currently may cause errors when running terraform destroy
.
Third-party Plugins
Anyone can develop and distribute their own Terraform providers. (See
Writing Custom Providers for more
about provider development.) These third-party providers must be manually
installed, since terraform init
cannot automatically download them.
Install third-party providers by placing their plugin executables in the user plugins directory. The user plugins directory is in one of the following locations, depending on the host operating system:
Operating system | User plugins directory |
---|---|
Windows | %APPDATA%\terraform.d\plugins |
All other systems | ~/.terraform.d/plugins |
Once a plugin is installed, terraform init
can initialize it normally.
Providers distributed by HashiCorp can also go in the user plugins directory. If a manually installed version meets the configuration's version constraints, Terraform will use it instead of downloading that provider. This is useful in airgapped environments and when testing pre-release provider builds.
Plugin Names and Versions
The naming scheme for provider plugins is terraform-provider-<NAME>_vX.Y.Z
,
and Terraform uses the name to understand the name and version of a particular
provider binary.
If multiple versions of a plugin are installed, Terraform will use the newest version that meets the configuration's version constraints.
Third-party plugins are often distributed with an appropriate filename already set in the distribution archive, so that they can be extracted directly into the user plugins directory.
OS and Architecture Directories
Terraform plugins are compiled for a specific operating system and architecture, and any plugins in the root of the user plugins directory must be compiled for the current system.
If you use the same plugins directory on multiple systems, you can install
plugins into subdirectories with a naming scheme of <OS>_<ARCH>
(for example,
darwin_amd64
). Terraform uses plugins from the root of the plugins directory
and from the subdirectory that corresponds to the current system, ignoring
other subdirectories.
Terraform's OS and architecture strings are the standard ones used by the Go language. The following are the most common:
darwin_amd64
freebsd_386
freebsd_amd64
freebsd_arm
linux_386
linux_amd64
linux_arm
openbsd_386
openbsd_amd64
solaris_amd64
windows_386
windows_amd64
Provider Plugin Cache
By default, terraform init
downloads plugins into a subdirectory of the
working directory so that each working directory is self-contained. As a
consequence, if you have multiple configurations that use the same provider
then a separate copy of its plugin will be downloaded for each configuration.
Given that provider plugins can be quite large (on the order of hundreds of megabytes), this default behavior can be inconvenient for those with slow or metered Internet connections. Therefore Terraform optionally allows the use of a local directory as a shared plugin cache, which then allows each distinct plugin binary to be downloaded only once.
To enable the plugin cache, use the plugin_cache_dir
setting in
the CLI configuration file.
For example:
This directory must already exist before Terraform will cache plugins; Terraform will not create the directory itself.
Please note that on Windows it is necessary to use forward slash separators
(/
) rather than the conventional backslash (\
) since the configuration
file parser considers a backslash to begin an escape sequence.
Setting this in the configuration file is the recommended approach for a
persistent setting. Alternatively, the TF_PLUGIN_CACHE_DIR
environment
variable can be used to enable caching or to override an existing cache
directory within a particular shell session:
When a plugin cache directory is enabled, the terraform init
command will
still access the plugin distribution server to obtain metadata about which
plugins are available, but once a suitable version has been selected it will
first check to see if the selected plugin is already available in the cache
directory. If so, the already-downloaded plugin binary will be used.
If the selected plugin is not already in the cache, it will be downloaded into the cache first and then copied from there into the correct location under your current working directory.
When possible, Terraform will use hardlinks or symlinks to avoid storing a separate copy of a cached plugin in multiple directories. At present, this is not supported on Windows and instead a copy is always created.
The plugin cache directory must not be the third-party plugin directory or any other directory Terraform searches for pre-installed plugins, since the cache management logic conflicts with the normal plugin discovery logic when operating on the same directory.
Please note that Terraform will never itself delete a plugin from the plugin cache once it's been placed there. Over time, as plugins are upgraded, the cache directory may grow to contain several unused versions which must be manually deleted.