GitHub v6.7.0 published on Friday, Feb 28, 2025 by Pulumi
github.getActionsVariables
Explore with Pulumi AI
Use this data source to retrieve the list of variables for a GitHub repository.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as github from "@pulumi/github";
const example = github.getActionsVariables({
    name: "example",
});
import pulumi
import pulumi_github as github
example = github.get_actions_variables(name="example")
package main
import (
	"github.com/pulumi/pulumi-github/sdk/v6/go/github"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := github.GetActionsVariables(ctx, &github.GetActionsVariablesArgs{
			Name: pulumi.StringRef("example"),
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Github = Pulumi.Github;
return await Deployment.RunAsync(() => 
{
    var example = Github.GetActionsVariables.Invoke(new()
    {
        Name = "example",
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.github.GithubFunctions;
import com.pulumi.github.inputs.GetActionsVariablesArgs;
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) {
        final var example = GithubFunctions.getActionsVariables(GetActionsVariablesArgs.builder()
            .name("example")
            .build());
    }
}
variables:
  example:
    fn::invoke:
      function: github:getActionsVariables
      arguments:
        name: example
Using getActionsVariables
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getActionsVariables(args: GetActionsVariablesArgs, opts?: InvokeOptions): Promise<GetActionsVariablesResult>
function getActionsVariablesOutput(args: GetActionsVariablesOutputArgs, opts?: InvokeOptions): Output<GetActionsVariablesResult>def get_actions_variables(full_name: Optional[str] = None,
                          name: Optional[str] = None,
                          opts: Optional[InvokeOptions] = None) -> GetActionsVariablesResult
def get_actions_variables_output(full_name: Optional[pulumi.Input[str]] = None,
                          name: Optional[pulumi.Input[str]] = None,
                          opts: Optional[InvokeOptions] = None) -> Output[GetActionsVariablesResult]func GetActionsVariables(ctx *Context, args *GetActionsVariablesArgs, opts ...InvokeOption) (*GetActionsVariablesResult, error)
func GetActionsVariablesOutput(ctx *Context, args *GetActionsVariablesOutputArgs, opts ...InvokeOption) GetActionsVariablesResultOutput> Note: This function is named GetActionsVariables in the Go SDK.
public static class GetActionsVariables 
{
    public static Task<GetActionsVariablesResult> InvokeAsync(GetActionsVariablesArgs args, InvokeOptions? opts = null)
    public static Output<GetActionsVariablesResult> Invoke(GetActionsVariablesInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetActionsVariablesResult> getActionsVariables(GetActionsVariablesArgs args, InvokeOptions options)
public static Output<GetActionsVariablesResult> getActionsVariables(GetActionsVariablesArgs args, InvokeOptions options)
fn::invoke:
  function: github:index/getActionsVariables:getActionsVariables
  arguments:
    # arguments dictionaryThe following arguments are supported:
getActionsVariables Result
The following output properties are available:
- Full
Name string - Id string
 - The provider-assigned unique ID for this managed resource.
 - Name string
 - Name of the variable
 - Variables
List<Get
Actions Variables Variable>  - list of variables for the repository
 
- Full
Name string - Id string
 - The provider-assigned unique ID for this managed resource.
 - Name string
 - Name of the variable
 - Variables
[]Get
Actions Variables Variable  - list of variables for the repository
 
- full
Name String - id String
 - The provider-assigned unique ID for this managed resource.
 - name String
 - Name of the variable
 - variables
List<Get
Actions Variables Variable>  - list of variables for the repository
 
- full
Name string - id string
 - The provider-assigned unique ID for this managed resource.
 - name string
 - Name of the variable
 - variables
Get
Actions Variables Variable[]  - list of variables for the repository
 
- full_
name str - id str
 - The provider-assigned unique ID for this managed resource.
 - name str
 - Name of the variable
 - variables
Sequence[Get
Actions Variables Variable]  - list of variables for the repository
 
- full
Name String - id String
 - The provider-assigned unique ID for this managed resource.
 - name String
 - Name of the variable
 - variables List<Property Map>
 - list of variables for the repository
 
Supporting Types
GetActionsVariablesVariable   
- created_
at str - Timestamp of the variable creation
 - name str
 - The name of the repository.
 - updated_
at str - Timestamp of the variable last update
 - value str
 - Value of the variable
 
Package Details
- Repository
 - GitHub pulumi/pulumi-github
 - License
 - Apache-2.0
 - Notes
 - This Pulumi package is based on the 
githubTerraform Provider.