Actualiser variables.tf
Some checks failed
Terraform Apply / Terraform Apply (push) Failing after 22s
Some checks failed
Terraform Apply / Terraform Apply (push) Failing after 22s
This commit is contained in:
25
variables.tf
25
variables.tf
@@ -3,8 +3,6 @@ variable "vault_url" {
|
|||||||
type = string
|
type = string
|
||||||
sensitive = true
|
sensitive = true
|
||||||
default = "https://vault.tips-of-mine.com"
|
default = "https://vault.tips-of-mine.com"
|
||||||
# ${{ secrets.VAULT_URL }}
|
|
||||||
# "https://vault.tips-of-mine.com"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
variable "vault_token" {
|
variable "vault_token" {
|
||||||
@@ -12,6 +10,25 @@ variable "vault_token" {
|
|||||||
type = string
|
type = string
|
||||||
sensitive = true
|
sensitive = true
|
||||||
default = "hvs.BUXBydP1Iy6leqNIo2wx478p"
|
default = "hvs.BUXBydP1Iy6leqNIo2wx478p"
|
||||||
# ${{ secrets.VAULT_TOKEN }}
|
}
|
||||||
# "hvs.BUXBydP1Iy6leqNIo2wx478p"
|
|
||||||
|
variable "environment" {
|
||||||
|
default = "Production"
|
||||||
|
}
|
||||||
|
|
||||||
|
variable "vpc_cidr" {
|
||||||
|
default = "10.0.0.0/16"
|
||||||
|
description = "CIDR block of the vpc"
|
||||||
|
}
|
||||||
|
|
||||||
|
variable "public_subnets_cidr" {
|
||||||
|
type = list(any)
|
||||||
|
default = ["10.0.0.0/20", "10.0.128.0/20"]
|
||||||
|
description = "CIDR block for Public Subnet"
|
||||||
|
}
|
||||||
|
|
||||||
|
variable "private_subnets_cidr" {
|
||||||
|
type = list(any)
|
||||||
|
default = ["10.0.16.0/20", "10.0.144.0/20"]
|
||||||
|
description = "CIDR block for Private Subnet"
|
||||||
}
|
}
|
Reference in New Issue
Block a user