manta
Stores the state as an artifact in Manta.
This backend supports state locking, with locking within Manta.
Example Configuration
Note that for the access credentials we recommend using a partial configuration.
Data Source Configuration
Configuration variables
The following configuration options are supported:
account
- (Required) This is the name of the Manta account. It can also be provided via theSDC_ACCOUNT
orTRITON_ACCOUNT
environment variables.user
- (Optional) The username of the Triton account used to authenticate with the Triton API. It can also be provided via theSDC_USER
orTRITON_USER
environment variables.url
- (Optional) The Manta API Endpoint. It can also be provided via theMANTA_URL
environment variable. Defaults tohttps://us-east.manta.joyent.com
.key_material
- (Optional) This is the private key of an SSH key associated with the Triton account to be used. If this is not set, the private key corresponding to the fingerprint in key_id must be available via an SSH Agent. Can be set via theSDC_KEY_MATERIAL
orTRITON_KEY_MATERIAL
environment variables.key_id
- (Required) This is the fingerprint of the public key matching the key specified in key_path. It can be obtained via the command ssh-keygen -l -E md5 -f /path/to/key. Can be set via theSDC_KEY_ID
orTRITON_KEY_ID
environment variables.insecure_skip_tls_verify
- (Optional) This allows skipping TLS verification of the Triton endpoint. It is useful when connecting to a temporary Triton installation such as Cloud-On-A-Laptop which does not generally use a certificate signed by a trusted root CA. Defaults tofalse
.path
- (Required) The path relative to your private storage directory (/$MANTA_USER/stor
) where the state file will be stored. Please Note: If this path does not exist, then the backend will create this folder location as part of backend creation.object_name
- (Optional) The name of the state file (defaults toterraform.tfstate
)