From 77067612ad8a18634de1729c191b4ad5d3a09eeb Mon Sep 17 00:00:00 2001 From: Colin Wilk Date: Wed, 31 May 2023 15:12:08 +0200 Subject: Add galaxy homepage to ansible projects Signed-off-by: Colin Wilk --- ansible.tf | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ansible.tf b/ansible.tf index bb5ff51..39cc8c6 100644 --- a/ansible.tf +++ b/ansible.tf @@ -4,6 +4,7 @@ resource "github_repository" "ansible" { name = "ansible-role-${each.value.name}" description = each.value.description topics = each.value.topics + homepage_url = each.value.homepage_url visibility = each.value.visibility archived = each.value.archived @@ -27,6 +28,7 @@ variable "repos" { name = string description = string topics = list(string) + homepage_url = string visibility = string galaxy = bool archived = bool @@ -37,6 +39,7 @@ variable "repos" { description = "Ansible role for pushing targets to prometheus instance" topics = ["ansible", "role", "galaxy", "prometheus", "monitoring", "metrics", "prometheus-exporter", "node-exporter"] + homepage_url = "https://galaxy.ansible.com/kliwniloc/prometheus_target" visibility = "public" galaxy = true archived = false @@ -45,6 +48,7 @@ variable "repos" { name = "borgbackup" description = "Ansible role for deploying borgbackup on client and server" topics = ["ansible", "role", "galaxy", "backup", "borgbackup"] + homepage_url = "https://galaxy.ansible.com/kliwniloc/borgbackup" visibility = "private" galaxy = false archived = false -- cgit v1.2.3