Skip to content

Latest commit

 

History

History
51 lines (40 loc) · 1.06 KB

organization.md

File metadata and controls

51 lines (40 loc) · 1.06 KB
page_title subcategory description
forgejo_organization Data Source - forgejo
Forgejo organization data source

forgejo_organization (Data Source)

Forgejo organization data source

Example Usage

terraform {
  required_providers {
    forgejo = {
      source = "svalabs/forgejo"
    }
  }
}

provider "forgejo" {
  host = "http://localhost:3000"
}

data "forgejo_organization" "this" {
  name = "test1"
}
output "debug" {
  value = data.forgejo_organization.this
}

Schema

Required

  • name (String) Name of the organization.

Read-Only

  • avatar_url (String) Avatar URL of the organization.
  • description (String) Description of the organization.
  • full_name (String) Full name of the organization.
  • id (Number) Numeric identifier of the organization.
  • location (String) Location of the organization.
  • visibility (String) Visibility of the organization.
  • website (String) Website of the organization.