Show / Hide Table of Contents

Class RemoteGitAuthArgs

Authentication options for the repository that can be specified for a private Git repo. There are three different authentication paths:

  • Personal accesstoken
  • SSH private key (and its optional password)
  • Basic auth username and password

Only one authentication path is valid.

Inheritance
object
RemoteGitAuthArgs
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 RemoteGitAuthArgs

Properties

View Source

Password

The password that pairs with a username or as part of an SSH Private Key.

Declaration
public string? Password { get; set; }
Property Value
Type Description
string
View Source

PersonalAccessToken

PersonalAccessToken is a Git personal access token in replacement of your password.

Declaration
public string? PersonalAccessToken { get; set; }
Property Value
Type Description
string
View Source

SshPrivateKey

The (contents) private key for access to the git repo.

Declaration
public string? SshPrivateKey { get; set; }
Property Value
Type Description
string
View Source

SshPrivateKeyPath

The absolute path to a private key for access to the git repo.

Declaration
public string? SshPrivateKeyPath { get; set; }
Property Value
Type Description
string
View Source

Username

Username is the username to use when authenticating to a git repository.

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