Skip to content

Create new gitlab_project_wiki_page resource

New Resource

  • gitlab_project_wiki_page

I'm missing a resource to create and manage a project level wiki page.

I'm looking for something that I could use like this:

resource "gitlab_project_wiki_page" "info_page" {
    project = "namespace/myproject"
    content = file("../somefile.md")
    title   = "Info Page"
    format  = "markdown" 
}

Related GitLab APIs

API documentation: https://docs.gitlab.com/ee/api/wikis.html

Additional Details

Additional Links