mirror of
https://github.com/khuedoan/homelab.git
synced 2025-01-05 21:11:52 +07:00
81f0a94574
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [cloudflare](https://registry.terraform.io/providers/cloudflare/cloudflare) ([source](https://github.com/cloudflare/terraform-provider-cloudflare)) | required_provider | minor | `~> 3.7.0` -> `~> 3.8.0` | | [dendrite](https://github.com/locmai/charts) | | patch | `0.0.1` -> `0.0.2` | | [renovate](https://github.com/renovatebot/helm-charts) | | minor | `31.62.0` -> `31.63.2` | ⚠️ Release Notes retrieval for this PR were skipped because no github.com credentials were available. If you are self-hosted, please see [this instruction](https://github.com/renovatebot/renovate/blob/master/docs/usage/examples/self-hosting.md#githubcom-token-for-release-notes). --- 📅 **Schedule**: At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, click this checkbox. --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). Reviewed-on: https://git.khuedoan.com/ops/homelab/pulls/2 Co-authored-by: Renovate Bot <bot@renovateapp.com> Co-committed-by: Renovate Bot <bot@renovateapp.com>
50 lines
881 B
HCL
50 lines
881 B
HCL
terraform {
|
|
required_version = "~> 1.1.0"
|
|
|
|
backend "remote" {
|
|
hostname = "app.terraform.io"
|
|
organization = "khuedoan"
|
|
|
|
workspaces {
|
|
name = "homelab-external"
|
|
}
|
|
}
|
|
|
|
required_providers {
|
|
cloudflare = {
|
|
source = "cloudflare/cloudflare"
|
|
version = "~> 3.8.0"
|
|
}
|
|
|
|
b2 = {
|
|
source = "Backblaze/b2"
|
|
version = "~> 0.7.0"
|
|
}
|
|
|
|
kubernetes = {
|
|
source = "hashicorp/kubernetes"
|
|
version = "~> 2.7.0"
|
|
}
|
|
|
|
http = {
|
|
source = "hashicorp/http"
|
|
version = "~> 2.1.0"
|
|
}
|
|
}
|
|
}
|
|
|
|
provider "cloudflare" {
|
|
email = var.cloudflare_email
|
|
api_key = var.cloudflare_api_key
|
|
}
|
|
|
|
provider "b2" {
|
|
application_key_id = var.b2_application_key_id
|
|
application_key = var.b2_application_key
|
|
}
|
|
|
|
provider "kubernetes" {
|
|
# Use KUBE_CONFIG_PATH environment variables
|
|
# Or in cluster service account
|
|
}
|