-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathversions.tf
More file actions
51 lines (43 loc) · 1011 Bytes
/
versions.tf
File metadata and controls
51 lines (43 loc) · 1011 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
terraform {
required_version = ">= 1.12.0"
backend "s3" {
endpoints = {
s3 = "https://fsn1.your-objectstorage.com"
}
bucket = "fleetyards-terraform-state"
key = "terraform.tfstate"
region = "fsn1"
skip_credentials_validation = true
skip_metadata_api_check = true
skip_region_validation = true
skip_requesting_account_id = true
skip_s3_checksum = true
use_path_style = true
}
required_providers {
hcloud = {
source = "hetznercloud/hcloud"
version = ">= 1.60"
}
cloudinit = {
source = "hashicorp/cloudinit"
version = ">= 2.3"
}
dnsimple = {
source = "dnsimple/dnsimple"
version = ">= 1.8"
}
aws = {
source = "hashicorp/aws"
version = ">= 5.0"
}
bunnynet = {
source = "BunnyWay/bunnynet"
version = ">= 0.4"
}
onepassword = {
source = "1Password/onepassword"
version = ">= 2.1"
}
}
}