khuedoan-homelab/external/versions.tf

50 lines
881 B
Terraform
Raw Normal View History

terraform {
required_version = "~> 1.1.0"
backend "remote" {
hostname = "app.terraform.io"
organization = "khuedoan"
workspaces {
name = "homelab-external"
}
}
required_providers {
cloudflare = {
source = "cloudflare/cloudflare"
chore(deps): update all non-major dependencies 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` | :warning: 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>
2022-01-31 23:21:04 +07:00
version = "~> 3.8.0"
}
b2 = {
source = "Backblaze/b2"
version = "~> 0.7.0"
}
kubernetes = {
2021-12-24 15:15:21 +07:00
source = "hashicorp/kubernetes"
version = "~> 2.7.0"
}
http = {
2021-12-24 15:15:21 +07:00
source = "hashicorp/http"
version = "~> 2.1.0"
}
}
}
provider "cloudflare" {
2021-12-25 02:50:18 +07:00
email = var.cloudflare_email
api_key = var.cloudflare_api_key
}
provider "b2" {
application_key_id = var.b2_application_key_id
2021-12-25 02:50:18 +07:00
application_key = var.b2_application_key
}
provider "kubernetes" {
# Use KUBE_CONFIG_PATH environment variables
# Or in cluster service account
}