state
This provider is a derived work of the Terraform Provider distributed under MPL 2.0. If you encounter a bug or missing feature, first check the pulumi/pulumi-terraform repo; however, if that doesn’t turn up anything, please consult the source terraform-providers/terraform-provider-terraform repo.
- class pulumi_terraform.state.ArtifactoryBackendArgs(repo: str | Awaitable[str] | Output[T], subpath: str | Awaitable[str] | Output[T], url: str | Awaitable[str] | Output[T] = None, username: str | Awaitable[str] | Output[T] = None, password: str | Awaitable[str] | Output[T] = None, workspace: str | Awaitable[str] | Output[T] = None)
The configuration options for a Terraform Remote State stored in the Artifactory backend.
Constructs an ArtifactoryBackendArgs.
- Parameters:
repo – The username with which to authenticate to Artifactory. Sourced from
ARTIFACTORY_USERNAME
in the environment, if unsetsubpath – Path within the repository.
url – The Artifactory URL. Note that this is the base URL to artifactory, not the full repo and subpath.
However, it must include the path to the artifactory installation - likely this will end in
/artifactory
. Sourced fromARTIFACTORY_URL
in the environment, if unset. :param username: The username with which to authenticate to Artifactory. Sourced fromARTIFACTORY_USERNAME
in the environment, if unset. :param password: The password with which to authenticate to Artifactory. Sourced fromARTIFACTORY_PASSWORD
in the environment, if unset. :param workspace: The Terraform workspace from which to read state.
- class pulumi_terraform.state.AzureRMBackendArgs(storage_account_name: str | Awaitable[str] | Output[T], container_name: str | Awaitable[str] | Output[T], key: str | Awaitable[str] | Output[T] = None, environment: str | Awaitable[str] | Output[T] = None, endpoint: str | Awaitable[str] | Output[T] = None, use_msi: bool | Awaitable[bool] | Output[T] = None, subscription_id: str | Awaitable[str] | Output[T] = None, tenant_id: str | Awaitable[str] | Output[T] = None, msi_endpoint: str | Awaitable[str] | Output[T] = None, sas_token: str | Awaitable[str] | Output[T] = None, access_key: str | Awaitable[str] | Output[T] = None, resource_group_name: str | Awaitable[str] | Output[T] = None, client_id: str | Awaitable[str] | Output[T] = None, client_secret: str | Awaitable[str] | Output[T] = None, workspace: str | Awaitable[str] | Output[T] = None)
The configuration options for a Terraform Remote State stored in the AzureRM backend.
Constructs an AzureRMBackendArgs
- param storage_account_name:
The name of the storage account.
- param container_name:
The name of the storage container within the storage account.
- param key:
The name of the blob in representing the Terraform State file inside the storage container.
- param environment:
The Azure environment which should be used. Possible values are
public
(default),china
,
german
,stack
andusgovernment
. Sourced fromARM_ENVIRONMENT
, if unset.- param endpoint:
The custom endpoint for Azure Resource Manager. Sourced from
ARM_ENDPOINT
, if unset.- param use_msi:
Whether to authenticate using Managed Service Identity (MSI). Sourced from
ARM_USE_MSI
if
unset. Defaults to false if no value is specified. :param subscription_id: The Subscription ID in which the Storage Account exists. Used when authenticating using the Managed Service Identity (MSI) or a service principal. Sourced from
ARM_SUBSCRIPTION_ID
, if unset. :param tenant_id: The Tenant ID in which the Subscription exists. Used when authenticating using the Managed Service Identity (MSI) or a service principal. Sourced fromARM_TENANT_ID
, if unset. :param msi_endpoint: The path to a custom Managed Service Identity endpoint. Used when authenticating using the Managed Service Identity (MSI). Sourced fromARM_MSI_ENDPOINT
in the environment, if unset. Automatically determined, if no value is provided. :param sas_token: The SAS Token used to access the Blob Storage Account. Used when authenticating using a SAS Token. Sourced fromARM_SAS_TOKEN
in the environment, if unset. :param access_key: The Access Key used to access the blob storage account. Used when authenticating using an access key. Sourced fromARM_ACCESS_KEY
in the environment, if unset. :param resource_group_name: The name of the resource group in which the storage account exists. Used when authenticating using a service principal. :param client_id: The client ID of the service principal. Used when authenticating using a service principal. Sourced fromARM_CLIENT_ID
in the environment, if unset. :param client_secret: The client secret of the service principal. Used when authenticating using a service principal. Sourced fromARM_CLIENT_SECRET
in the environment, if unset. :param workspace: The Terraform workspace from which to read state.
- class pulumi_terraform.state.ConsulBackendArgs(path: str | Awaitable[str] | Output[T], access_token: str | Awaitable[str] | Output[T], address: str | Awaitable[str] | Output[T] = None, scheme: str | Awaitable[str] | Output[T] = None, datacenter: str | Awaitable[str] | Output[T] = None, http_auth: str | Awaitable[str] | Output[T] = None, gzip: bool | Awaitable[bool] | Output[T] = None, ca_file: str | Awaitable[str] | Output[T] = None, cert_file: str | Awaitable[str] | Output[T] = None, key_file: str | Awaitable[str] | Output[T] = None, workspace: str | Awaitable[str] | Output[T] = None)
The configuration options for a Terraform Remote State stored in the Consul backend.
Constructs a ConsulBackendArgs.
- Parameters:
path – Path in the Consul KV store.
access_token – Consul Access Token. Sourced from
CONSUL_HTTP_TOKEN
in the environment, if unset.address – DNS name and port of the Consul HTTP endpoint specified in the format
dnsname:port
. Defaults
to the local agent HTTP listener. :param scheme: Specifies which protocol to use when talking to the given address - either
http
orhttps
. TLS support can also be enabled by setting the environment variableCONSUL_HTTP_SSL
totrue
. :param datacenter: The datacenter to use. Defaults to that of the agent. :param http_auth: HTTP Basic Authentication credentials to be used when communicating with Consul, in the format of eitheruser
oruser:pass
. Sourced fromCONSUL_HTTP_AUTH
, if unset. :param gzip: Whether to compress the state data using gzip. Set totrue
to compress the state data using gzip, orfalse
(default) to leave it uncompressed. :param ca_file: A path to a PEM-encoded certificate authority used to verify the remote agent’s certificate. Sourced fromCONSUL_CAFILE
in the environment, if unset. :param cert_file: A path to a PEM-encoded certificate provided to the remote agent; requires use of key_file. Sourced fromCONSUL_CLIENT_CERT
in the environment, if unset. :param key_file: A path to a PEM-encoded private key, required if cert_file is specified. Sourced fromCONSUL_CLIENT_KEY
in the environment, if unset. :param workspace: The Terraform workspace from which to read state.
- class pulumi_terraform.state.EtcdV2BackendArgs(path: str | Awaitable[str] | Output[T], endpoints: str | Awaitable[str] | Output[T], username: str | Awaitable[str] | Output[T] = None, password: str | Awaitable[str] | Output[T] = None, workspace: str | Awaitable[str] | Output[T] = None)
The configuration options for a Terraform Remote State stored in the etcd v2 backend. Note that there is a separate configuration class for state stored in the ectd v3 backend.
Constructs an EtcdV2BackendArgs.
- Parameters:
path – The path at which to store the state.
endpoints – A space-separated list of the etcd endpoints.
username – The username with which to authenticate to etcd.
password – The username with which to authenticate to etcd.
workspace – The Terraform workspace from which to read state.
- class pulumi_terraform.state.EtcdV3BackendArgs(endpoints: Sequence[str | Awaitable[str] | Output[T]] | Awaitable[Sequence[str | Awaitable[str] | Output[T]]] | Output[T], username: str | Awaitable[str] | Output[T] = None, password: str | Awaitable[str] | Output[T] = None, prefix: str | Awaitable[str] | Output[T] = None, cacert_path: str | Awaitable[str] | Output[T] = None, cert_path: str | Awaitable[str] | Output[T] = None, key_path: str | Awaitable[str] | Output[T] = None, workspace: str | Awaitable[str] | Output[T] = None)
The configuration options for a Terraform Remote State stored in the etcd v3 backend. Note that there is a separate configuration class for state stored in the ectd v2 backend.
Constructs an EtcdV3BackendArgs.
- Parameters:
endpoints – A list of the etcd endpoints.
username – The username with which to authenticate to etcd. Sourced from
ETCDV3_USERNAME
in the
environment, if unset. :param password: The username with which to authenticate to etcd. Sourced from
ETCDV3_PASSWORD
in the environment, if unset. :param prefix: An optional prefix to be added to keys when storing state in etcd. :param cacert_path: Path to a PEM-encoded certificate authority bundle with which to verify certificates of TLS-enabled etcd servers. :param cert_path: Path to a PEM-encoded certificate to provide to etcd for client authentication. :param key_path: Path to a PEM-encoded key to use for client authentication. :param workspace: The Terraform workspace from which to read state.
- class pulumi_terraform.state.GcsBackendArgs(bucket: str | Awaitable[str] | Output[T], credentials: str | Awaitable[str] | Output[T] = None, prefix: str | Awaitable[str] | Output[T] = None, encryption_key: str | Awaitable[str] | Output[T] = None, workspace: str | Awaitable[str] | Output[T] = None)
The configuration options for a Terraform Remote State stored in the Google Cloud Storage backend.
Constructs a GcsBackendArgs.
- Parameters:
bucket – The name of the Google Cloud Storage bucket.
credentials – Local path to Google Cloud Platform account credentials in JSON format. Sourced from
GOOGLE_CREDENTIALS
in the environment if unset. If no value is provided Google Application Default Credentials are used. :param prefix: Prefix used inside the Google Cloud Storage bucket. Named states for workspaces are stored in an object named<prefix>/<name>.tfstate
. :param encryption_key: A 32 byte, base64-encoded customer supplied encryption key used to encrypt the state. Sourced fromGOOGLE_ENCRYPTION_KEY
in the environment, if unset. :param workspace: The Terraform workspace from which to read state.
- class pulumi_terraform.state.HttpBackendArgs(address: str | Awaitable[str] | Output[T], update_method: str | Awaitable[str] | Output[T] = None, lock_address: str | Awaitable[str] | Output[T] = None, lock_method: str | Awaitable[str] | Output[T] = None, unlock_address: str | Awaitable[str] | Output[T] = None, unlock_method: str | Awaitable[str] | Output[T] = None, username: str | Awaitable[str] | Output[T] = None, password: str | Awaitable[str] | Output[T] = None, skip_cert_validation: bool | Awaitable[bool] | Output[T] = None, workspace: str | Awaitable[str] | Output[T] = None)
The configuration options for a Terraform Remote State stored in the HTTP backend.
Constructs an HttpBackendArgs.
- Parameters:
address – The address of the HTTP endpoint.
update_method – HTTP method to use when updating state. Defaults to
POST
.lock_address – The address of the lock REST endpoint. Not setting a value disables locking.
lock_method – The HTTP method to use when locking. Defaults to
LOCK
.unlock_address – The address of the unlock REST endpoint. Not setting a value disables locking.
unlock_method – The HTTP method to use when unlocking. Defaults to
UNLOCK
.username – The username used for HTTP basic authentication.
password – The password used for HTTP basic authentication.
skip_cert_validation – Whether to skip TLS verification. Defaults to false.
workspace – The Terraform workspace from which to read state.
- class pulumi_terraform.state.LocalBackendArgs(path: str | Awaitable[str] | Output[T])
The configuration options for a Terraform Remote State stored in the local enhanced backend.
Constructs a LocalBackendArgs.
- Parameters:
path – The path to the Terraform state file.
- class pulumi_terraform.state.MantaBackendArgs(account: str | Awaitable[str] | Output[T], user: str | Awaitable[str] | Output[T] = None, url: str | Awaitable[str] | Output[T] = None, key_material: str | Awaitable[str] | Output[T] = None, key_id: str | Awaitable[str] | Output[T] = None, path: str | Awaitable[str] | Output[T] = None, insecure_skip_tls_verify: bool | Awaitable[bool] | Output[T] = None, workspace: str | Awaitable[str] | Output[T] = None)
The configuration options for a Terraform Remote State stored in the Manta backend.
Constructs a MantaBackendArgs.
- Parameters:
account – The name of the Manta account. Sourced from
SDC_ACCOUNT
or_ACCOUNT
in the environment, if
unset. :param user: The username of the Manta account with which to authenticate. :param url: The Manta API Endpoint. Sourced from
MANTA_URL
in the environment, if unset. Defaults tohttps://us-east.manta.joyent.com
. :param key_material: The private key material corresponding with the SSH key whose fingerprint is specified in keyId. Sourced fromSDC_KEY_MATERIAL
orTRITON_KEY_MATERIAL
in the environment, if unset. If no value is specified, the local SSH agent is used for signing requests. :param key_id: The fingerprint of the public key matching the key material specified in keyMaterial, or in the local SSH agent. :param path: The path relative to your private storage directory (/$MANTA_USER/stor
) where the state file will be stored. :param insecure_skip_tls_verify: Skip verifying the TLS certificate presented by the Manta endpoint. This can beuseful for installations which do not have a certificate signed by a trusted root CA. Defaults to false.
- Parameters:
workspace – The Terraform workspace from which to read state.
- class pulumi_terraform.state.OssBackendArgs(bucket: str | Awaitable[str] | Output[T], access_key: str | Awaitable[str] | Output[T] = None, secret_key: str | Awaitable[str] | Output[T] = None, security_token: str | Awaitable[str] | Output[T] = None, ecs_role_name: str | Awaitable[str] | Output[T] = None, region: str | Awaitable[str] | Output[T] = None, endpoint: str | Awaitable[str] | Output[T] = None, prefix: str | Awaitable[str] | Output[T] = None, key: str | Awaitable[str] | Output[T] = None, profile: str | Awaitable[str] | Output[T] = None, shared_credentials_file: str | Awaitable[str] | Output[T] = None, role_arn: str | Awaitable[str] | Output[T] = None, policy: str | Awaitable[str] | Output[T] = None, session_name: str | Awaitable[str] | Output[T] = None, session_expiration: str | Awaitable[str] | Output[T] = None)
The configuration options for a Terraform Remote State stored in the OSS backend.
Constructs an OssBackendArgs.
- Parameters:
bucket – The name of the OSS bucket.
access_key – Alibaba Cloud access key. It supports environment variables
ALICLOUD_ACCESS_KEY
and
ALICLOUD_ACCESS_KEY_ID
:param secret_key: Alibaba Cloud secret access key. It supports environment variablesALICLOUD_SECRET_KEY
andALICLOUD_ACCESS_KEY_SECRET
. :param security_token: STS access token. It supports environment variableALICLOUD_SECURITY_TOKEN
. :param ecs_role_name: The RAM Role Name attached on a ECS instance for API operations. You can retrieve this from the ‘Access Control’ section of the Alibaba Cloud console. :param region: The region of the OSS bucket. It supports environment variablesALICLOUD_REGION
andALICLOUD_DEFAULT_REGION
. :param endpoint: A custom endpoint for the OSS API. It supports environment variablesALICLOUD_OSS_ENDPOINT
andOSS_ENDPOINT
. :param prefix: The path directory of the state file will be stored. Default toenv:
. :param key: The name of the state file. Defaults toterraform.tfstate
. :param profile: This is the Alibaba Cloud profile name as set in the shared credentials file. It can also be sourced from theALICLOUD_PROFILE
environment variable. :param shared_credentials_file: This is the path to the shared credentials file. It can also be sourced from theALICLOUD_SHARED_CREDENTIALS_FILE
environment variable. If this is not set and a profile is specified,~/.aliyun/config.json
will be used. :param role_arn: The ARN of the role to assume. If ARN is set to an empty string, it does not perform role switching. It supports environment variableALICLOUD_ASSUME_ROLE_ARN
. :param policy: A more restrictive policy to apply to the temporary credentials. This gives you a way to further restrict the permissions for the resulting temporary security credentials. You cannot use this policy to grant permissions which exceed those of the role that is being assumed. :param session_name: The session name to use when assuming the role. It supports environment variableALICLOUD_ASSUME_ROLE_SESSION_NAME
. :param session_expiration: The time after which the established session for assuming role expires. Valid value range: [900-3600] seconds. Default to3600
. It supports environment variableALICLOUD_ASSUME_ROLE_SESSION_EXPIRATION
.
- class pulumi_terraform.state.PostgresBackendArgs(conn_str: str | Awaitable[str] | Output[T], schema_name: str | Awaitable[str] | Output[T] = None, workspace: str | Awaitable[str] | Output[T] = None)
The configuration options for a Terraform Remote State stored in the Postgres backend.
Constructs a PostgresBackendArgs.
- Parameters:
conn_str – Postgres connection string; a
postgres://
URL.schema_name – Name of the automatically-managed Postgres schema. Defaults to
terraform_remote_state
.workspace – The Terraform workspace from which to read state.
- class pulumi_terraform.state.RemoteBackendArgs(organization: str | Awaitable[str] | Output[T], token: str | Awaitable[str] | Output[T] = None, hostname: str | Awaitable[str] | Output[T] = None, workspace_name: str | Awaitable[str] | Output[T] = None, workspace_prefix: str | Awaitable[str] | Output[T] = None)
Configuration options for a workspace for use with the remote enhanced backend.
Constructs a RemoteBackendArgs.
- Parameters:
organization – The name of the organization containing the targeted workspace(s).
token – The token used to authenticate with the remote backend.
hostname – The remote backend hostname to which to connect. Defaults to
app.terraform.io
.workspace_name – The full name of one remote workspace. When configured, only the default workspace can
be used. This option conflicts with workspace_prefix. :param workspace_prefix: A prefix used in the names of one or more remote workspaces, all of which can be used with this configuration. If unset, only the default workspace can be used. This option conflicts with workspace_name.
- class pulumi_terraform.state.RemoteStateReference(resource_name: str, backend_type: str, args: ArtifactoryBackendArgs | AzureRMBackendArgs | ConsulBackendArgs | EtcdV2BackendArgs | EtcdV3BackendArgs | GcsBackendArgs | HttpBackendArgs | LocalBackendArgs | MantaBackendArgs | OssBackendArgs | PostgresBackendArgs | RemoteBackendArgs | S3BackendArgs | SwiftBackendArgs, opts: ResourceOptions | None = None)
Manages a reference to a Terraform Remote State. The root outputs of the remote state are available via the
outputs
property or thegetOutput
method.Create a RemoteStateReference resource with the given unique name, props, and options.
- Parameters:
resource_name (str) – The name of the resource.
opts (pulumi.ResourceOptions) – Options for the resource.
backend_type (str) – The name of the Remote State Backend
args (BackendArgs) – The arguments for the Remote State backend, which must match the given backend_type.
- outputs: Output[Mapping[str, Any]]
The root outputs of the referenced Terraform state.
- get_output(name: str | Awaitable[str] | Output[T])
Fetches the value of a root output from the Terraform Remote State.
- Parameters:
name – The name of the output to fetch. The name is formatted exactly as per the “output” block in the
Terraform configuration. :return: A pulumi.Output representing the value.
- translate_output_property(prop)
Provides subclasses of Resource an opportunity to translate names of output properties into a format of their choosing before writing those properties to the resource object.
If the
props
passed to__init__
is an input type (decorated with@input_type
), the type/name metadata of the resource will be used to translate names instead of calling this method.- Parameters:
prop (str) – A property name.
- Returns:
A potentially transformed property name.
- Return type:
str
- translate_input_property(prop)
Provides subclasses of Resource an opportunity to translate names of input properties into a format of their choosing before sending those properties to the Pulumi engine.
If the
props
passed to__init__
is an input type (decorated with@input_type
), the type/name metadata ofprops
will be used to translate names instead of calling this method.- Parameters:
prop (str) – A property name.
- Returns:
A potentially transformed property name.
- Return type:
str
- class pulumi_terraform.state.S3BackendArgs(bucket: str | Awaitable[str] | Output[T], key: str | Awaitable[str] | Output[T], region: str | Awaitable[str] | Output[T] = None, endpoint: str | Awaitable[str] | Output[T] = None, access_key: str | Awaitable[str] | Output[T] = None, secret_key: str | Awaitable[str] | Output[T] = None, profile: str | Awaitable[str] | Output[T] = None, shared_credentials_file: str | Awaitable[str] | Output[T] = None, token: str | Awaitable[str] | Output[T] = None, role_arn: str | Awaitable[str] | Output[T] = None, external_id: str | Awaitable[str] | Output[T] = None, session_name: str | Awaitable[str] | Output[T] = None, workspace_key_prefix: str | Awaitable[str] | Output[T] = None, iam_endpoint: str | Awaitable[str] | Output[T] = None, sts_endpoint: str | Awaitable[str] | Output[T] = None, skip_credentials_validation: bool | Awaitable[bool] | Output[T] = None, skip_region_validation: bool | Awaitable[bool] | Output[T] = None, skip_metadata_api_check: bool | Awaitable[bool] | Output[T] = None, force_path_style: bool | Awaitable[bool] | Output[T] = None, workspace: str | Awaitable[str] | Output[T] = None)
The configuration options for a Terraform Remote State stored in the S3 backend.
Constructs an S3BackendArgs.
- Parameters:
bucket – The name of the S3 bucket.
key – The path to the state file inside the bucket. When using a non-default workspace, the state path
will be
/workspace_key_prefix/workspace_name/key
. :param region: The region of the S3 bucket. Also sourced fromAWS_DEFAULT_REGION
in the environment, if unset. :param endpoint: A custom endpoint for the S3 API. Also sourced fromAWS_S3_ENDPOINT
in the environment, if unset. :param access_key: AWS Access Key. Sourced from the standard credentials pipeline, if unset. :param secret_key: AWS Secret Access Key. Sourced from the standard credentials pipeline, if unset. :param profile: The AWS profile name as set in the shared credentials file. :param shared_credentials_file: The path to the shared credentials file. If this is not set and a profile is specified,~/.aws/credentials
will be used by default. :param token: An MFA token. Sourced fromAWS_SESSION_TOKEN
in the environment if needed and unset. :param role_arn: The ARN of an IAM Role to be assumed in order to read the state from S3. :param external_id: The external ID to use when assuming the IAM role. :param session_name: The session name to use when assuming the IAM role. :param workspace_key_prefix: The prefix applied to the state path inside the bucket. This is only relevant when using a non-default workspace, and defaults toenv:
. :param iam_endpoint: A custom endpoint for the IAM API. Sourced fromAWS_IAM_ENDPOINT
, if unset. :param sts_endpoint: A custom endpoint for the STS API. Sourced fromAWS_STS_ENDPOINT
, if unset. :param skip_credentials_validation: Skip the credentials validation via STS API. :param skip_region_validation: Skip static validation of region name. :param skip_metadata_api_check: Skip the AWS Metadata API check. :param force_path_style: Force s3 to use path style api. :param workspace: The Terraform workspace from which to read state.
- class pulumi_terraform.state.SwiftBackendArgs(auth_url: str | Awaitable[str] | Output[T], container: str | Awaitable[str] | Output[T], username: str | Awaitable[str] | Output[T] = None, user_id: str | Awaitable[str] | Output[T] = None, password: str | Awaitable[str] | Output[T] = None, token: str | Awaitable[str] | Output[T] = None, region_name: str | Awaitable[str] | Output[T] = None, tenant_id: str | Awaitable[str] | Output[T] = None, tenant_name: str | Awaitable[str] | Output[T] = None, domain_id: str | Awaitable[str] | Output[T] = None, domain_name: str | Awaitable[str] | Output[T] = None, insecure: bool | Awaitable[bool] | Output[T] = None, cacert_file: str | Awaitable[str] | Output[T] = None, cert: str | Awaitable[str] | Output[T] = None, key: str | Awaitable[str] | Output[T] = None)
The configuration options for a Terraform Remote State stored in the Swift backend.
Constructs a SwiftBackendArgs.
- Parameters:
auth_url – The Identity authentication URL. Sourced from
OS_AUTH_URL
in the environment, if unset.container – The name of the container in which the Terraform state file is stored.
username – The username with which to log in. Sourced from
OS_USERNAME
in the environment, if unset.user_id – The user ID with which to log in. Sourced from
OS_USER_ID
in the environment, if unset.password – The password with which to log in. Sourced from
OS_PASSWORD
in the environment, if unset.token – Access token with which to log in in stead of a username and password. Sourced from
OS_AUTH_TOKEN
in the environment, if unset. :param region_name: The region in which the state file is stored. Sourced fromOS_REGION_NAME
, if unset. :param tenant_id: The ID of the tenant (for identity v2) or project (identity v3) which which to log in. Sourced fromOS_TENANT_ID
orOS_PROJECT_ID
in the environment, if unset. :param tenant_name: The name of the tenant (for identity v2) or project (identity v3) which which to log in. Sourced fromOS_TENANT_NAME
orOS_PROJECT_NAME
in the environment, if unset. :param domain_id: The ID of the domain to scope the log in to (identity v3). Sourced fromOS_USER_DOMAIN_ID
,OS_PROJECT_DOMAIN_ID
orOS_DOMAIN_ID
in the environment, if unset. :param domain_name: The name of the domain to scope the log in to (identity v3). Sourced fromOS_USER_DOMAIN_NAME
,OS_PROJECT_DOMAIN_NAME
orOS_DOMAIN_NAME
in the environment, if unset. :param insecure: Whether to disable verification of the server TLS certificate. Sourced fromOS_INSECURE
in the environment, if unset. :param cacert_file: A path to a CA root certificate for verifying the server TLS certificate. Sourced fromOS_CACERT
in the environment, if unset. :param cert: A path to a client certificate for TLS client authentication. Sourced fromOS_CERT
in the environment, if unset. :param key: A path to the private key corresponding to the client certificate for TLS client authentication. Sourced fromOS_KEY
in the environment, if unset.
Thank you for your feedback!
If you have a question about how to use Pulumi, reach out in Community Slack.
Open an issue on GitHub to report a problem or suggest an improvement.