vault.secrets.SyncGhDestination
Explore with Pulumi AI
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as vault from "@pulumi/vault";
const gh = new vault.secrets.SyncGhDestination("gh", {
name: "gh-dest",
accessToken: accessToken,
repositoryOwner: repoOwner,
repositoryName: "repo-name-example",
secretNameTemplate: "vault_{{ .MountAccessor | lowercase }}_{{ .SecretPath | lowercase }}",
});
import pulumi
import pulumi_vault as vault
gh = vault.secrets.SyncGhDestination("gh",
name="gh-dest",
access_token=access_token,
repository_owner=repo_owner,
repository_name="repo-name-example",
secret_name_template="vault_{{ .MountAccessor | lowercase }}_{{ .SecretPath | lowercase }}")
package main
import (
"github.com/pulumi/pulumi-vault/sdk/v6/go/vault/secrets"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := secrets.NewSyncGhDestination(ctx, "gh", &secrets.SyncGhDestinationArgs{
Name: pulumi.String("gh-dest"),
AccessToken: pulumi.Any(accessToken),
RepositoryOwner: pulumi.Any(repoOwner),
RepositoryName: pulumi.String("repo-name-example"),
SecretNameTemplate: pulumi.String("vault_{{ .MountAccessor | lowercase }}_{{ .SecretPath | lowercase }}"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Vault = Pulumi.Vault;
return await Deployment.RunAsync(() =>
{
var gh = new Vault.Secrets.SyncGhDestination("gh", new()
{
Name = "gh-dest",
AccessToken = accessToken,
RepositoryOwner = repoOwner,
RepositoryName = "repo-name-example",
SecretNameTemplate = "vault_{{ .MountAccessor | lowercase }}_{{ .SecretPath | lowercase }}",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.vault.secrets.SyncGhDestination;
import com.pulumi.vault.secrets.SyncGhDestinationArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var gh = new SyncGhDestination("gh", SyncGhDestinationArgs.builder()
.name("gh-dest")
.accessToken(accessToken)
.repositoryOwner(repoOwner)
.repositoryName("repo-name-example")
.secretNameTemplate("vault_{{ .MountAccessor | lowercase }}_{{ .SecretPath | lowercase }}")
.build());
}
}
resources:
gh:
type: vault:secrets:SyncGhDestination
properties:
name: gh-dest
accessToken: ${accessToken}
repositoryOwner: ${repoOwner}
repositoryName: repo-name-example
secretNameTemplate: vault_{{ .MountAccessor | lowercase }}_{{ .SecretPath | lowercase }}
Create SyncGhDestination Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SyncGhDestination(name: string, args?: SyncGhDestinationArgs, opts?: CustomResourceOptions);
@overload
def SyncGhDestination(resource_name: str,
args: Optional[SyncGhDestinationArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def SyncGhDestination(resource_name: str,
opts: Optional[ResourceOptions] = None,
access_token: Optional[str] = None,
app_name: Optional[str] = None,
granularity: Optional[str] = None,
installation_id: Optional[int] = None,
name: Optional[str] = None,
namespace: Optional[str] = None,
repository_name: Optional[str] = None,
repository_owner: Optional[str] = None,
secret_name_template: Optional[str] = None)
func NewSyncGhDestination(ctx *Context, name string, args *SyncGhDestinationArgs, opts ...ResourceOption) (*SyncGhDestination, error)
public SyncGhDestination(string name, SyncGhDestinationArgs? args = null, CustomResourceOptions? opts = null)
public SyncGhDestination(String name, SyncGhDestinationArgs args)
public SyncGhDestination(String name, SyncGhDestinationArgs args, CustomResourceOptions options)
type: vault:secrets:SyncGhDestination
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args SyncGhDestinationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args SyncGhDestinationArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args SyncGhDestinationArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SyncGhDestinationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SyncGhDestinationArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var syncGhDestinationResource = new Vault.Secrets.SyncGhDestination("syncGhDestinationResource", new()
{
AccessToken = "string",
AppName = "string",
Granularity = "string",
InstallationId = 0,
Name = "string",
Namespace = "string",
RepositoryName = "string",
RepositoryOwner = "string",
SecretNameTemplate = "string",
});
example, err := secrets.NewSyncGhDestination(ctx, "syncGhDestinationResource", &secrets.SyncGhDestinationArgs{
AccessToken: pulumi.String("string"),
AppName: pulumi.String("string"),
Granularity: pulumi.String("string"),
InstallationId: pulumi.Int(0),
Name: pulumi.String("string"),
Namespace: pulumi.String("string"),
RepositoryName: pulumi.String("string"),
RepositoryOwner: pulumi.String("string"),
SecretNameTemplate: pulumi.String("string"),
})
var syncGhDestinationResource = new SyncGhDestination("syncGhDestinationResource", SyncGhDestinationArgs.builder()
.accessToken("string")
.appName("string")
.granularity("string")
.installationId(0)
.name("string")
.namespace("string")
.repositoryName("string")
.repositoryOwner("string")
.secretNameTemplate("string")
.build());
sync_gh_destination_resource = vault.secrets.SyncGhDestination("syncGhDestinationResource",
access_token="string",
app_name="string",
granularity="string",
installation_id=0,
name="string",
namespace="string",
repository_name="string",
repository_owner="string",
secret_name_template="string")
const syncGhDestinationResource = new vault.secrets.SyncGhDestination("syncGhDestinationResource", {
accessToken: "string",
appName: "string",
granularity: "string",
installationId: 0,
name: "string",
namespace: "string",
repositoryName: "string",
repositoryOwner: "string",
secretNameTemplate: "string",
});
type: vault:secrets:SyncGhDestination
properties:
accessToken: string
appName: string
granularity: string
installationId: 0
name: string
namespace: string
repositoryName: string
repositoryOwner: string
secretNameTemplate: string
SyncGhDestination Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The SyncGhDestination resource accepts the following input properties:
- Access
Token string - Fine-grained or personal access token.
Can be omitted and directly provided to Vault using the
GITHUB_ACCESS_TOKEN
environment variable. - App
Name string - The user-defined name of the GitHub App configuration. This is a reference to the name used
on the new endpoint when configuring the GitHub app on the Vault Server. Can be modified. Takes precedence over theaccess_token
field. - Granularity string
- Determines what level of information is synced as a distinct resource
at the destination. Supports
secret-path
andsecret-key
. - Installation
Id int - The ID of the installation generated by GitHub when the app referenced by the
app_name
was installed in the user’s GitHub account. Can be modified. Necessary if theapp_name
field is also provided. - Name string
- Unique name of the GitHub destination.
- Namespace string
- The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The
namespace
is always relative to the provider's configured namespace. - Repository
Name string - Name of the repository.
Can be omitted and directly provided to Vault using the
GITHUB_REPOSITORY_NAME
environment variable. - Repository
Owner string - GitHub organization or username that owns the repository.
Can be omitted and directly provided to Vault using the
GITHUB_REPOSITORY_OWNER
environment variable. - Secret
Name stringTemplate - Template describing how to generate external secret names. Supports a subset of the Go Template syntax.
- Access
Token string - Fine-grained or personal access token.
Can be omitted and directly provided to Vault using the
GITHUB_ACCESS_TOKEN
environment variable. - App
Name string - The user-defined name of the GitHub App configuration. This is a reference to the name used
on the new endpoint when configuring the GitHub app on the Vault Server. Can be modified. Takes precedence over theaccess_token
field. - Granularity string
- Determines what level of information is synced as a distinct resource
at the destination. Supports
secret-path
andsecret-key
. - Installation
Id int - The ID of the installation generated by GitHub when the app referenced by the
app_name
was installed in the user’s GitHub account. Can be modified. Necessary if theapp_name
field is also provided. - Name string
- Unique name of the GitHub destination.
- Namespace string
- The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The
namespace
is always relative to the provider's configured namespace. - Repository
Name string - Name of the repository.
Can be omitted and directly provided to Vault using the
GITHUB_REPOSITORY_NAME
environment variable. - Repository
Owner string - GitHub organization or username that owns the repository.
Can be omitted and directly provided to Vault using the
GITHUB_REPOSITORY_OWNER
environment variable. - Secret
Name stringTemplate - Template describing how to generate external secret names. Supports a subset of the Go Template syntax.
- access
Token String - Fine-grained or personal access token.
Can be omitted and directly provided to Vault using the
GITHUB_ACCESS_TOKEN
environment variable. - app
Name String - The user-defined name of the GitHub App configuration. This is a reference to the name used
on the new endpoint when configuring the GitHub app on the Vault Server. Can be modified. Takes precedence over theaccess_token
field. - granularity String
- Determines what level of information is synced as a distinct resource
at the destination. Supports
secret-path
andsecret-key
. - installation
Id Integer - The ID of the installation generated by GitHub when the app referenced by the
app_name
was installed in the user’s GitHub account. Can be modified. Necessary if theapp_name
field is also provided. - name String
- Unique name of the GitHub destination.
- namespace String
- The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The
namespace
is always relative to the provider's configured namespace. - repository
Name String - Name of the repository.
Can be omitted and directly provided to Vault using the
GITHUB_REPOSITORY_NAME
environment variable. - repository
Owner String - GitHub organization or username that owns the repository.
Can be omitted and directly provided to Vault using the
GITHUB_REPOSITORY_OWNER
environment variable. - secret
Name StringTemplate - Template describing how to generate external secret names. Supports a subset of the Go Template syntax.
- access
Token string - Fine-grained or personal access token.
Can be omitted and directly provided to Vault using the
GITHUB_ACCESS_TOKEN
environment variable. - app
Name string - The user-defined name of the GitHub App configuration. This is a reference to the name used
on the new endpoint when configuring the GitHub app on the Vault Server. Can be modified. Takes precedence over theaccess_token
field. - granularity string
- Determines what level of information is synced as a distinct resource
at the destination. Supports
secret-path
andsecret-key
. - installation
Id number - The ID of the installation generated by GitHub when the app referenced by the
app_name
was installed in the user’s GitHub account. Can be modified. Necessary if theapp_name
field is also provided. - name string
- Unique name of the GitHub destination.
- namespace string
- The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The
namespace
is always relative to the provider's configured namespace. - repository
Name string - Name of the repository.
Can be omitted and directly provided to Vault using the
GITHUB_REPOSITORY_NAME
environment variable. - repository
Owner string - GitHub organization or username that owns the repository.
Can be omitted and directly provided to Vault using the
GITHUB_REPOSITORY_OWNER
environment variable. - secret
Name stringTemplate - Template describing how to generate external secret names. Supports a subset of the Go Template syntax.
- access_
token str - Fine-grained or personal access token.
Can be omitted and directly provided to Vault using the
GITHUB_ACCESS_TOKEN
environment variable. - app_
name str - The user-defined name of the GitHub App configuration. This is a reference to the name used
on the new endpoint when configuring the GitHub app on the Vault Server. Can be modified. Takes precedence over theaccess_token
field. - granularity str
- Determines what level of information is synced as a distinct resource
at the destination. Supports
secret-path
andsecret-key
. - installation_
id int - The ID of the installation generated by GitHub when the app referenced by the
app_name
was installed in the user’s GitHub account. Can be modified. Necessary if theapp_name
field is also provided. - name str
- Unique name of the GitHub destination.
- namespace str
- The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The
namespace
is always relative to the provider's configured namespace. - repository_
name str - Name of the repository.
Can be omitted and directly provided to Vault using the
GITHUB_REPOSITORY_NAME
environment variable. - repository_
owner str - GitHub organization or username that owns the repository.
Can be omitted and directly provided to Vault using the
GITHUB_REPOSITORY_OWNER
environment variable. - secret_
name_ strtemplate - Template describing how to generate external secret names. Supports a subset of the Go Template syntax.
- access
Token String - Fine-grained or personal access token.
Can be omitted and directly provided to Vault using the
GITHUB_ACCESS_TOKEN
environment variable. - app
Name String - The user-defined name of the GitHub App configuration. This is a reference to the name used
on the new endpoint when configuring the GitHub app on the Vault Server. Can be modified. Takes precedence over theaccess_token
field. - granularity String
- Determines what level of information is synced as a distinct resource
at the destination. Supports
secret-path
andsecret-key
. - installation
Id Number - The ID of the installation generated by GitHub when the app referenced by the
app_name
was installed in the user’s GitHub account. Can be modified. Necessary if theapp_name
field is also provided. - name String
- Unique name of the GitHub destination.
- namespace String
- The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The
namespace
is always relative to the provider's configured namespace. - repository
Name String - Name of the repository.
Can be omitted and directly provided to Vault using the
GITHUB_REPOSITORY_NAME
environment variable. - repository
Owner String - GitHub organization or username that owns the repository.
Can be omitted and directly provided to Vault using the
GITHUB_REPOSITORY_OWNER
environment variable. - secret
Name StringTemplate - Template describing how to generate external secret names. Supports a subset of the Go Template syntax.
Outputs
All input properties are implicitly available as output properties. Additionally, the SyncGhDestination resource produces the following output properties:
Look up Existing SyncGhDestination Resource
Get an existing SyncGhDestination resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: SyncGhDestinationState, opts?: CustomResourceOptions): SyncGhDestination
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
access_token: Optional[str] = None,
app_name: Optional[str] = None,
granularity: Optional[str] = None,
installation_id: Optional[int] = None,
name: Optional[str] = None,
namespace: Optional[str] = None,
repository_name: Optional[str] = None,
repository_owner: Optional[str] = None,
secret_name_template: Optional[str] = None,
type: Optional[str] = None) -> SyncGhDestination
func GetSyncGhDestination(ctx *Context, name string, id IDInput, state *SyncGhDestinationState, opts ...ResourceOption) (*SyncGhDestination, error)
public static SyncGhDestination Get(string name, Input<string> id, SyncGhDestinationState? state, CustomResourceOptions? opts = null)
public static SyncGhDestination get(String name, Output<String> id, SyncGhDestinationState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Access
Token string - Fine-grained or personal access token.
Can be omitted and directly provided to Vault using the
GITHUB_ACCESS_TOKEN
environment variable. - App
Name string - The user-defined name of the GitHub App configuration. This is a reference to the name used
on the new endpoint when configuring the GitHub app on the Vault Server. Can be modified. Takes precedence over theaccess_token
field. - Granularity string
- Determines what level of information is synced as a distinct resource
at the destination. Supports
secret-path
andsecret-key
. - Installation
Id int - The ID of the installation generated by GitHub when the app referenced by the
app_name
was installed in the user’s GitHub account. Can be modified. Necessary if theapp_name
field is also provided. - Name string
- Unique name of the GitHub destination.
- Namespace string
- The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The
namespace
is always relative to the provider's configured namespace. - Repository
Name string - Name of the repository.
Can be omitted and directly provided to Vault using the
GITHUB_REPOSITORY_NAME
environment variable. - Repository
Owner string - GitHub organization or username that owns the repository.
Can be omitted and directly provided to Vault using the
GITHUB_REPOSITORY_OWNER
environment variable. - Secret
Name stringTemplate - Template describing how to generate external secret names. Supports a subset of the Go Template syntax.
- Type string
- The type of the secrets destination (
gh
).
- Access
Token string - Fine-grained or personal access token.
Can be omitted and directly provided to Vault using the
GITHUB_ACCESS_TOKEN
environment variable. - App
Name string - The user-defined name of the GitHub App configuration. This is a reference to the name used
on the new endpoint when configuring the GitHub app on the Vault Server. Can be modified. Takes precedence over theaccess_token
field. - Granularity string
- Determines what level of information is synced as a distinct resource
at the destination. Supports
secret-path
andsecret-key
. - Installation
Id int - The ID of the installation generated by GitHub when the app referenced by the
app_name
was installed in the user’s GitHub account. Can be modified. Necessary if theapp_name
field is also provided. - Name string
- Unique name of the GitHub destination.
- Namespace string
- The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The
namespace
is always relative to the provider's configured namespace. - Repository
Name string - Name of the repository.
Can be omitted and directly provided to Vault using the
GITHUB_REPOSITORY_NAME
environment variable. - Repository
Owner string - GitHub organization or username that owns the repository.
Can be omitted and directly provided to Vault using the
GITHUB_REPOSITORY_OWNER
environment variable. - Secret
Name stringTemplate - Template describing how to generate external secret names. Supports a subset of the Go Template syntax.
- Type string
- The type of the secrets destination (
gh
).
- access
Token String - Fine-grained or personal access token.
Can be omitted and directly provided to Vault using the
GITHUB_ACCESS_TOKEN
environment variable. - app
Name String - The user-defined name of the GitHub App configuration. This is a reference to the name used
on the new endpoint when configuring the GitHub app on the Vault Server. Can be modified. Takes precedence over theaccess_token
field. - granularity String
- Determines what level of information is synced as a distinct resource
at the destination. Supports
secret-path
andsecret-key
. - installation
Id Integer - The ID of the installation generated by GitHub when the app referenced by the
app_name
was installed in the user’s GitHub account. Can be modified. Necessary if theapp_name
field is also provided. - name String
- Unique name of the GitHub destination.
- namespace String
- The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The
namespace
is always relative to the provider's configured namespace. - repository
Name String - Name of the repository.
Can be omitted and directly provided to Vault using the
GITHUB_REPOSITORY_NAME
environment variable. - repository
Owner String - GitHub organization or username that owns the repository.
Can be omitted and directly provided to Vault using the
GITHUB_REPOSITORY_OWNER
environment variable. - secret
Name StringTemplate - Template describing how to generate external secret names. Supports a subset of the Go Template syntax.
- type String
- The type of the secrets destination (
gh
).
- access
Token string - Fine-grained or personal access token.
Can be omitted and directly provided to Vault using the
GITHUB_ACCESS_TOKEN
environment variable. - app
Name string - The user-defined name of the GitHub App configuration. This is a reference to the name used
on the new endpoint when configuring the GitHub app on the Vault Server. Can be modified. Takes precedence over theaccess_token
field. - granularity string
- Determines what level of information is synced as a distinct resource
at the destination. Supports
secret-path
andsecret-key
. - installation
Id number - The ID of the installation generated by GitHub when the app referenced by the
app_name
was installed in the user’s GitHub account. Can be modified. Necessary if theapp_name
field is also provided. - name string
- Unique name of the GitHub destination.
- namespace string
- The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The
namespace
is always relative to the provider's configured namespace. - repository
Name string - Name of the repository.
Can be omitted and directly provided to Vault using the
GITHUB_REPOSITORY_NAME
environment variable. - repository
Owner string - GitHub organization or username that owns the repository.
Can be omitted and directly provided to Vault using the
GITHUB_REPOSITORY_OWNER
environment variable. - secret
Name stringTemplate - Template describing how to generate external secret names. Supports a subset of the Go Template syntax.
- type string
- The type of the secrets destination (
gh
).
- access_
token str - Fine-grained or personal access token.
Can be omitted and directly provided to Vault using the
GITHUB_ACCESS_TOKEN
environment variable. - app_
name str - The user-defined name of the GitHub App configuration. This is a reference to the name used
on the new endpoint when configuring the GitHub app on the Vault Server. Can be modified. Takes precedence over theaccess_token
field. - granularity str
- Determines what level of information is synced as a distinct resource
at the destination. Supports
secret-path
andsecret-key
. - installation_
id int - The ID of the installation generated by GitHub when the app referenced by the
app_name
was installed in the user’s GitHub account. Can be modified. Necessary if theapp_name
field is also provided. - name str
- Unique name of the GitHub destination.
- namespace str
- The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The
namespace
is always relative to the provider's configured namespace. - repository_
name str - Name of the repository.
Can be omitted and directly provided to Vault using the
GITHUB_REPOSITORY_NAME
environment variable. - repository_
owner str - GitHub organization or username that owns the repository.
Can be omitted and directly provided to Vault using the
GITHUB_REPOSITORY_OWNER
environment variable. - secret_
name_ strtemplate - Template describing how to generate external secret names. Supports a subset of the Go Template syntax.
- type str
- The type of the secrets destination (
gh
).
- access
Token String - Fine-grained or personal access token.
Can be omitted and directly provided to Vault using the
GITHUB_ACCESS_TOKEN
environment variable. - app
Name String - The user-defined name of the GitHub App configuration. This is a reference to the name used
on the new endpoint when configuring the GitHub app on the Vault Server. Can be modified. Takes precedence over theaccess_token
field. - granularity String
- Determines what level of information is synced as a distinct resource
at the destination. Supports
secret-path
andsecret-key
. - installation
Id Number - The ID of the installation generated by GitHub when the app referenced by the
app_name
was installed in the user’s GitHub account. Can be modified. Necessary if theapp_name
field is also provided. - name String
- Unique name of the GitHub destination.
- namespace String
- The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The
namespace
is always relative to the provider's configured namespace. - repository
Name String - Name of the repository.
Can be omitted and directly provided to Vault using the
GITHUB_REPOSITORY_NAME
environment variable. - repository
Owner String - GitHub organization or username that owns the repository.
Can be omitted and directly provided to Vault using the
GITHUB_REPOSITORY_OWNER
environment variable. - secret
Name StringTemplate - Template describing how to generate external secret names. Supports a subset of the Go Template syntax.
- type String
- The type of the secrets destination (
gh
).
Import
GitHub Secrets sync destinations can be imported using the name
, e.g.
$ pulumi import vault:secrets/syncGhDestination:SyncGhDestination gh gh-dest
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Vault pulumi/pulumi-vault
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
vault
Terraform Provider.