terraform-provider-gitea/examples/resources/gitea_repository_key/resource.tf
Tobias Trabelsi 8095c2a513
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
prepare next release
2023-01-04 19:15:00 +01:00

25 lines
458 B
HCL

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
}