Skip to content

Add CI job to Terraform state version GraphQL type

What does this MR do?

Allows fetching details about the CI job that created a Terraform state version.

GraphQL example

Query:

{
  project(fullPath: "terraform/test-project") {
    id
    
    terraformStates {
      nodes {
        name
        
        latestVersion {
          id
          
          job {
            name
          }
        }
      }
    }
  }
}

Response

{
  "data": {
    "project": {
      "id": "gid://gitlab/Project/21",
      "terraformStates": {
        "nodes": [
          {
            "name": "example-name",
            "latestVersion": {
              "id": "gid://gitlab/Terraform::StateVersion/19",
              "job": {
                "name": "apply"
              }
            }
          }
        ]
      }
    }
  }
}

Does this MR meet the acceptance criteria?

Conformity

Availability and Testing

Security

If this MR contains changes to processing or storing of credentials or tokens, authorization and authentication methods and other items described in the security review guidelines:

  • Label as security and @ mention @gitlab-com/gl-security/appsec
  • The MR includes necessary changes to maintain consistency between UI, API, email, or other methods
  • Security reports checked/validated by a reviewer from the AppSec team

Related to #267168

Edited by Tiger Watson

Merge request reports