{"id":18714114,"url":"https://github.com/dragonraid/freshrss-terraform-modules","last_synced_at":"2026-02-19T19:32:27.741Z","repository":{"id":252500118,"uuid":"786401349","full_name":"dragonraid/freshrss-terraform-modules","owner":"dragonraid","description":"FreshRSS in Cloud (Azure, Oracle, ...) via terraform and k8s","archived":false,"fork":false,"pushed_at":"2025-03-16T10:55:51.000Z","size":16,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-20T05:45:59.520Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"HCL","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dragonraid.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2024-04-14T10:56:12.000Z","updated_at":"2025-03-16T10:55:53.000Z","dependencies_parsed_at":"2024-08-10T09:02:45.992Z","dependency_job_id":"8f99ff02-a998-42f4-b465-4b4834c4ceac","html_url":"https://github.com/dragonraid/freshrss-terraform-modules","commit_stats":null,"previous_names":["dragonraid/freshrss-terraform-modules"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/dragonraid/freshrss-terraform-modules","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dragonraid%2Ffreshrss-terraform-modules","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dragonraid%2Ffreshrss-terraform-modules/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dragonraid%2Ffreshrss-terraform-modules/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dragonraid%2Ffreshrss-terraform-modules/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dragonraid","download_url":"https://codeload.github.com/dragonraid/freshrss-terraform-modules/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dragonraid%2Ffreshrss-terraform-modules/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29628808,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-19T18:02:07.722Z","status":"ssl_error","status_checked_at":"2026-02-19T18:01:46.144Z","response_time":117,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-07T12:51:16.467Z","updated_at":"2026-02-19T19:32:26.483Z","avatar_url":"https://github.com/dragonraid.png","language":"HCL","funding_links":[],"categories":[],"sub_categories":[],"readme":"# FreshRSS\n\nTerraform module for deploying a self-hosted instance of [FreshRSS](https://freshrss.github.io/FreshRSS/en/) to Kubernetes in Azure public cloud.\n\n\u003e [!IMPORTANT]\n\u003e This module is meant to be simple and cheap, not highly available and secure\n\n## Quick start\n\nThis guide presumes you have a basic understanding of the following:\n\n- AKS\n- Terraform\n- Azure CLI\n- Kubectl\n- Kustomize\n\n### Prerequisites\n\n- Azure account with existing subscription\n- [azure CLI](https://docs.microsoft.com/en-us/cli/azure/install-azure-cli)\n- [kubectl](https://kubernetes.io/docs/tasks/tools/install-kubectl)\n- [terraform](https://learn.hashicorp.com/tutorials/terraform/install-cli)\n\n### Deploy\n\nThe following part provides example values you can use to deploy the FreshRSS instance to Azure.\n\n```bash\ncat \u003c\u003c EOF \u003e main.tf\nmodule \"freshrss\" {\n  source = \"git::https://github.com/dragonraid/freshrss-terraform-modules/terraform/azure\"\n\n  location              = \"North Europe\"\n  aks_default_node_pool = {}\n  aks_network_profile   = {}\n}\nEOF\n\ncat \u003c\u003c EOF \u003e provider.tf\nterraform {\n  required_providers {\n    azurerm = {\n      source = \"hashicorp/azurerm\"\n      version = \"3.110.0\"\n    }\n  }\n}\n\nprovider \"azurerm\" {\n  # Configuration options\n}\nEOF\n```\n\nThen run the following commands to deploy the FreshRSS instance to Azure.\n\n```bash\naz login\n\nterraform init\nterraform apply\nterraform output -raw kube_config \u003e /tmp/kubeconfig\nKUBECONFIG=/tmp/kubeconfig:~/.kube/config kubectl config view --flatten \u003e ~/.kube/config\nkubectl apply -k modules/kubernetes/base\n```\n\nGet the external IP of the FreshRSS instance by running the following command.\n\n```bash\nkubectl get ingress freshrss -n freshrss -o jsonpath='{.status.loadBalancer.ingress[0].ip}'\n```\n\nHappy reading!\n\n## Terraform\n\n### Inputs\n\n| Name                      | Description                                                 | Type     | Default       | Required |\n| ------------------------- | ----------------------------------------------------------- | -------- | ------------- | -------- |\n| name                      | Name of the stack referenced in resource names.             | string   | `freshrss`    | no       |\n| location                  | The Azure region in which to deploy the FreshRSS resources. | `string` | n/a           | yes      |\n| vnet_cidr                 | Azure VNET address prefix.                                  | string   | `10.0.0.0/24` | no       |\n| subnet_address_prefixes   | Azure subnet address prefix.                                | string   | `10.0.0.0/24` | no       |\n| aks_sku_tier              | The SKU tier of the AKS cluster.                            | string   | `Free`        | no       |\n| workload_identity_enabled | Enable workload identity for the AKS cluster.               | bool     | `false`       | no       |\n| oidc_issuer_enabled       | Enable OIDC issuer for the AKS cluster.                     | bool     | `false`       | no       |\n| aks_default_node_pool*    | The AKS default node pool configuration.                    | object   | `{}`          | no       |\n| aks_network_profile*      | The AKS network profile configuration.                      | object   | `{}`          | no       |\n\n\u003e \\* See below for more information.\n\n#### aks_default_node_pool\n\n| Name       | Description                                   | Type   | Default        | Required |\n| ---------- | --------------------------------------------- | ------ | -------------- | -------- |\n| name       | The name of the default node pool.            | string | `default`      | no       |\n| node_count | The number of nodes in the default node pool. | number | `1`            | no       |\n| vm_size    | The size of the Virtual Machine.              | string | `Standard_B2s` | no       |\n\n#### aks_network_profile\n\n| Name           | Description                                  | Type   | Default         | Required |\n| -------------- | -------------------------------------------- | ------ | --------------- | -------- |\n| network_plugin | The network plugin used for the AKS cluster. | string | `azure`         | no       |\n| service_cidr   | The service CIDR used for the AKS cluster.   | string | `172.32.0.0/12` | no       |\n| dns_service_ip | The DNS service IP used for the AKS cluster. | string | `172.32.0.2`    | no       |\n\n### Outputs\n\n| Name           | Description                                  | Type   |\n| -------------- | -------------------------------------------- | ------ |\n| kube_config    | The kubeconfig file for the AKS cluster.     | string |\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdragonraid%2Ffreshrss-terraform-modules","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdragonraid%2Ffreshrss-terraform-modules","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdragonraid%2Ffreshrss-terraform-modules/lists"}