Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 766 Bytes

File metadata and controls

28 lines (21 loc) · 766 Bytes
Error in user YAML: (<unknown>): found unexpected end of stream while scanning a quoted scalar at line 1 column 13
---
page_title: "github_actions_environment_variables Data Source - terraform-provider-github
description: |-
  Get Actions variables of the repository environment
---

github_actions_environment_variables (Data Source)

Use this data source to retrieve the list of variables of the repository environment.

Example Usage

data "github_actions_environment_variables" "example" {
    name        = "exampleRepo"
    environment = "exampleEnvironment"
}

Argument Reference

Attributes Reference

  • variables - list of variables for the environment
    • name - Name of the variable
    • value - Value of the variable
    • created_at - Timestamp of the variable creation
    • updated_at - Timestamp of the variable last update