-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathversions.tf
More file actions
34 lines (32 loc) · 815 Bytes
/
versions.tf
File metadata and controls
34 lines (32 loc) · 815 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# Copyright 2024, identinet GmbH. All rights reserved.
# SPDX-License-Identifier: MIT
terraform {
required_providers {
# See Version Constraints: https://developer.hashicorp.com/terraform/language/expressions/version-constraints
hcloud = {
# Documentation; https://registry.terraform.io/providers/hetznercloud/hcloud
source = "hetznercloud/hcloud"
version = "~> 1.60.0"
}
http = {
source = "hashicorp/http"
version = "~> 3.5.0"
}
local = {
source = "hashicorp/local"
version = "~> 2.8.0"
}
random = {
source = "hashicorp/random"
version = "~> 3.8.0"
}
time = {
source = "hashicorp/time"
version = "~> 0.13.0"
}
}
required_version = "~> 1.0"
}
provider "hcloud" {
token = var.hcloud_token
}