mirror of
https://github.com/FlipsideCrypto/convox.git
synced 2026-02-06 10:56:56 +00:00
terraform: fix variable type deprecation warnings (#35)
* Updating to new terraform syntax
This commit is contained in:
parent
61c15dcd16
commit
9383e43b09
@ -1,6 +1,6 @@
|
||||
variable "access_id" {
|
||||
description = "spaces access id"
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "name" {
|
||||
@ -30,12 +30,12 @@ variable "registry_disk" {
|
||||
|
||||
variable "secret_key" {
|
||||
description = "spaces secret key"
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "token" {
|
||||
description = "digital ocean api token"
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
provider "digitalocean" {
|
||||
|
||||
@ -15,7 +15,7 @@ variable "node_type" {
|
||||
|
||||
variable "project" {
|
||||
description = "id of gcp project in which to install the rack"
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "release" {
|
||||
|
||||
@ -1,27 +1,27 @@
|
||||
variable "domain" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "name" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "namespace" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "oidc_arn" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "oidc_sub" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "release" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "router" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
@ -1,31 +1,31 @@
|
||||
variable "domain" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "name" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "namespace" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "region" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "release" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "resource_group" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "router" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "workspace" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
@ -1,39 +1,39 @@
|
||||
variable "access_id" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "domain" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "elasticsearch" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "name" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "namespace" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "region" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "release" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "router" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "secret" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "secret_key" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
@ -1,23 +1,23 @@
|
||||
variable "domain" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "name" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "namespace" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "nodes_account" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "release" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "router" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
@ -3,7 +3,7 @@ variable "annotations" {
|
||||
}
|
||||
|
||||
variable "domain" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "env" {
|
||||
@ -15,15 +15,15 @@ variable "labels" {
|
||||
}
|
||||
|
||||
variable "name" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "namespace" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "release" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "socket" {
|
||||
|
||||
@ -7,7 +7,7 @@ variable "kubernetes_version" {
|
||||
}
|
||||
|
||||
variable "name" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "node_type" {
|
||||
|
||||
@ -1,3 +1,3 @@
|
||||
variable "namespace" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
@ -1,19 +1,19 @@
|
||||
variable "cluster" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "namespace" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "name" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "oidc_arn" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "oidc_sub" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
@ -1,15 +1,15 @@
|
||||
variable "cluster" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "elasticsearch" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "namespace" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "name" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
@ -1,11 +1,11 @@
|
||||
variable "cluster" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "namespace" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "name" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
@ -7,17 +7,17 @@ variable "env" {
|
||||
}
|
||||
|
||||
variable "cluster" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "image" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "namespace" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "target" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
@ -1,25 +1,25 @@
|
||||
variable "cluster" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "name" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "nodes_security" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "oidc_arn" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "oidc_sub" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "release" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "subnets_private" {
|
||||
@ -31,10 +31,10 @@ variable "subnets_public" {
|
||||
}
|
||||
|
||||
variable "target_group_http" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "target_group_https" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
|
||||
@ -1,19 +1,19 @@
|
||||
variable "name" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "region" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "release" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "resource_group" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "workspace" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
@ -1,27 +1,27 @@
|
||||
variable "access_id" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "cluster" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "name" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "region" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "registry_disk" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "release" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "secret_key" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
@ -1,9 +1,9 @@
|
||||
variable "name" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "network" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "node_type" {
|
||||
@ -11,7 +11,7 @@ variable "node_type" {
|
||||
}
|
||||
|
||||
variable "nodes_account" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "region" {
|
||||
@ -19,5 +19,5 @@ variable "region" {
|
||||
}
|
||||
|
||||
variable "release" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
@ -1,11 +1,11 @@
|
||||
variable "domain" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "name" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "release" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
@ -1,25 +1,25 @@
|
||||
variable "name" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "namespace" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "nodes_security" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "oidc_arn" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "oidc_sub" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "release" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "subnets" {
|
||||
@ -27,9 +27,9 @@ variable "subnets" {
|
||||
}
|
||||
|
||||
variable "target_group_http" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "target_group_https" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
@ -1,19 +1,19 @@
|
||||
variable "name" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "namespace" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "region" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "release" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "resource_group" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
@ -1,15 +1,15 @@
|
||||
variable "name" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "namespace" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "region" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "release" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
@ -1,15 +1,15 @@
|
||||
variable "name" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "namespace" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "network" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "release" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
@ -1,17 +1,17 @@
|
||||
variable "annotations" {
|
||||
type = "map"
|
||||
type = map
|
||||
default = {}
|
||||
}
|
||||
|
||||
variable "env" {
|
||||
type = "map"
|
||||
type = map
|
||||
default = {}
|
||||
}
|
||||
|
||||
variable "namespace" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "release" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
@ -3,7 +3,7 @@ variable "cidr" {
|
||||
}
|
||||
|
||||
variable "name" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "node_type" {
|
||||
|
||||
@ -1,13 +1,13 @@
|
||||
variable "name" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "node_type" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "region" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "release" {
|
||||
|
||||
@ -1,21 +1,21 @@
|
||||
variable "access_id" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "name" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "node_type" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "region" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "registry_disk" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "release" {
|
||||
@ -23,9 +23,9 @@ variable "release" {
|
||||
}
|
||||
|
||||
variable "secret_key" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "token" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
variable "name" {
|
||||
type = "string"
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "node_type" {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user