Show / Hide Table of Contents

Class RemoteWorkspaceOptions

Extensibility options to configure a RemoteWorkspace.

Inheritance
object
RemoteWorkspaceOptions
RemoteGitProgramArgs
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Pulumi.Automation
Assembly: Pulumi.Automation.dll
Syntax
public class RemoteWorkspaceOptions

Properties

View Source

EnvironmentVariables

Environment values scoped to the remote workspace. These will be passed to remote operations.

Declaration
public IDictionary<string, EnvironmentVariableValue> EnvironmentVariables { get; set; }
Property Value
Type Description
IDictionary<string, EnvironmentVariableValue>
View Source

PreRunCommands

An optional list of arbitrary commands to run before a remote Pulumi operation is invoked.

Declaration
public IList<string> PreRunCommands { get; set; }
Property Value
Type Description
IList<string>
View Source

SkipInstallDependencies

Whether to skip the default dependency installation step.

Declaration
public bool SkipInstallDependencies { get; set; }
Property Value
Type Description
bool
  • View Source
Back to top Copyright 2016-2023, Pulumi Corporation.