You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
terraformDummyRepo2/docs/resources/repository_key.md

1.4 KiB

page_title subcategory description
gitea_repository_key Resource - terraform-provider-gitea gitea_repository_key manages a deploy key for a single gitea_repository. Every key needs a unique name and unique key, i.e. no key can be added twice to the same repo

gitea_repository_key (Resource)

gitea_repository_key manages a deploy key for a single gitea_repository.

Every key needs a unique name and unique key, i.e. no key can be added twice to the same repo

Example Usage

terraform {
  required_providers {
    tls = {
      source = "hashicorp/tls"
      version = "4.0.4"
    }
  }
}

resource "tls_private_key" "example" {
  type = "RSA"
  rsa_bits = 4096
}

resource "gitea_repository" "example" {
  name = "example"
  private = true
}

resource "gitea_repository_key" "example" {
  repository = gitea_repository.example.id
  title = "Example Deploy Key"
  read_only = true
  key = tls_private_key.example.public_key_openssh
}

Schema

Required

  • key (String) Armored SSH key to add
  • repository (Number) The ID of the repository where the deploy key belongs to
  • title (String) Name of the deploy key

Optional

  • read_only (Boolean) Whether this key has read or read/write access

Read-Only

  • id (String) The ID of this resource.