Show / Hide Table of Contents

Class ConfigSource

Information about the Terraform configuration.

Inheritance
object
ConfigSource
BitbucketCloudConfigSource
BitbucketServerConfigSource
CompartmentConfigSource
DevOpsConfigSource
GitConfigSource
ObjectStorageConfigSource
ZipUploadConfigSource
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.ResourcemanagerService.Models
Assembly: OCI.DotNetSDK.Resourcemanager.dll
Syntax
[JsonConverter(typeof(ConfigSourceModelConverter))]
public class ConfigSource

Properties

WorkingDirectory

Declaration
[JsonProperty(PropertyName = "workingDirectory")]
public string WorkingDirectory { get; set; }
Property Value
Type Description
string

File path to the directory to use for running Terraform. If not specified, the root directory is used. Required when using a zip Terraform configuration (configSourceType value of ZIP_UPLOAD) that contains folders. Ignored for the configSourceType value of COMPARTMENT_CONFIG_SOURCE. For more information about required and recommended file structure, see File Structure (Terraform Configurations for Resource Manager).

In this article
Back to top