diff options
| author | Colin Wilk <colin.wilk@tum.de> | 2023-05-31 15:12:08 +0200 |
|---|---|---|
| committer | Colin Wilk <colin.wilk@tum.de> | 2023-05-31 15:12:08 +0200 |
| commit | 77067612ad8a18634de1729c191b4ad5d3a09eeb (patch) | |
| tree | e42f0e8d4a780173748ecb610148c1404201b117 /ansible.tf | |
| parent | cd56d3dd99db04f840647e456ebfc8534de350f8 (diff) | |
| download | terraform-github-77067612ad8a18634de1729c191b4ad5d3a09eeb.tar.gz terraform-github-77067612ad8a18634de1729c191b4ad5d3a09eeb.zip | |
Add galaxy homepage to ansible projects
Signed-off-by: Colin Wilk <colin.wilk@tum.de>
Diffstat (limited to 'ansible.tf')
| -rw-r--r-- | ansible.tf | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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 |