Skip to content

File tree

4 files changed

+44
-2
lines changed

4 files changed

+44
-2
lines changed

infra/terraform/.terraform-version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.13.7
1+
0.14.11

infra/terraform/.terraform.lock.hcl

+40
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

infra/terraform/my-stamps.tf

+2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ variable "do_token" {
55
# How to obtain a token: https://docs.digitalocean.com/reference/api/create-personal-access-token/
66
description = "Digital Ocean Personal Access Token"
77
type = string
8+
sensitive = true
89
}
910

1011
variable "uptimerobot_token" {
@@ -14,6 +15,7 @@ variable "uptimerobot_token" {
1415
# - scroll down to API Settings and select "Main API Key"
1516
description = "UptimeRobot API key"
1617
type = string
18+
sensitive = true
1719
}
1820

1921
# Digital Ocean provider docs: https://registry.terraform.io/providers/digitalocean/digitalocean/2.28.1/docs

infra/terraform/versions.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
terraform {
22
# @todo #1268 Update Terraform to 0.15.x
3-
required_version = ">= 0.13"
3+
required_version = ">= 0.14"
44

55
required_providers {
66
digitalocean = {

0 commit comments

Comments
 (0)