Skip to content

Add support for GitLab Applications

Community Note

  • Please vote on this issue by adding a 👍 reaction to the original issue to help the community and maintainers prioritize this request
  • Please do not leave "+1" or other comments that do not add relevant new information or questions, they generate extra noise for issue followers and do not help prioritize the request
  • If you are interested in working on this issue or have submitted a pull request, please leave a comment

Description

It would be nice to be able to have support for GitLab Applications.

New or Affected Resource(s)

  • gitlab_application

Potential Terraform Configuration

resource "gitlab_application" "example" {
  name = "My App"
  callback_uri = "https://example.com/login/callback"
  scopes = [
    "api"
  ]
  confidential = true
}

Not shown here but the secret from the exported attributes should probably be encrypted using a PGP key like for https://www.terraform.io/docs/providers/aws/r/iam_access_key.html.

References

Edited by Timo Furrer