hosts/plover: add Hugo themes into initial Gitea provisioning

This commit is contained in:
Gabriel Arazas 2024-11-06 20:07:17 +08:00
parent e64d10f2aa
commit b7819530d3
No known key found for this signature in database
GPG Key ID: 62104B43D00AA360

View File

@ -98,3 +98,25 @@ resource "gitea_repository" "ansible-playbooks" {
migration_mirror_interval = "4h" migration_mirror_interval = "4h"
private = false private = false
} }
resource "gitea_repository" "hugo-theme-more-contentful" {
username = gitea_user.foodogsquared.username
name = "hugo-theme-more-contentful"
mirror = true
migration_clone_address = "https://github.com/foo-dogsquared/hugo-theme-more-contentful.git"
migration_service = "github"
migration_service_auth_token = var.github_clone_token
migration_mirror_interval = "4h"
private = false
}
resource "gitea_repository" "hugo-theme-contentful" {
username = gitea_user.foodogsquared.username
name = "hugo-theme-contentful"
mirror = true
migration_clone_address = "https://github.com/foo-dogsquared/hugo-theme-contentful.git"
migration_service = "github"
migration_service_auth_token = var.github_clone_token
migration_mirror_interval = "4h"
private = false
}