page_title | subcategory | description |
---|---|---|
forgejo_organization Data Source - forgejo |
Forgejo organization data source |
Forgejo organization data source
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
}
name
(String) Name of the organization.
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.