aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorColin Wilk <colin.wilk@tum.de>2023-05-31 15:12:08 +0200
committerColin Wilk <colin.wilk@tum.de>2023-05-31 15:12:08 +0200
commit77067612ad8a18634de1729c191b4ad5d3a09eeb (patch)
treee42f0e8d4a780173748ecb610148c1404201b117
parentcd56d3dd99db04f840647e456ebfc8534de350f8 (diff)
downloadterraform-github-77067612ad8a18634de1729c191b4ad5d3a09eeb.tar.gz
terraform-github-77067612ad8a18634de1729c191b4ad5d3a09eeb.zip
Add galaxy homepage to ansible projects
Signed-off-by: Colin Wilk <colin.wilk@tum.de>
-rw-r--r--ansible.tf4
1 files changed, 4 insertions, 0 deletions
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