-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
36 lines (33 loc) · 1.28 KB
/
variables.tf
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
variable "aws_region" {
description = "AWS region to use"
type = string
default = "us-west-1"
}
# Note: The following AWS credential variables are intentionally omitted.
# It is recommended to manage AWS credentials using the AWS CLI configured profiles
# or environment variables. Use 'aws configure' to set up your credential file securely
# or set the AWS_ACCESS_KEY_ID, AWS_SECRET_ACCESS_KEY, and AWS_SESSION_TOKEN
# environment variables for your session.
# Original validation logic, which was incorrect and now commented for reference
# variable "vpc_cidr" {
# description = "The IPv4 CIDR block to use for the VPC"
# type = string
# default = "192.170.0.0/20"
# validation {
# condition = tonumber(split("/", var.vpc_cidr)[1]) <= 20 && tonumber(split("/", var.vpc_cidr)[1]) >= 16
# error_message = "CIDR size must be at least /20 and no larger than /16"
# }
# }
# Corrected version
variable "vpc_cidr" {
description = "The IPv4 CIDR block to use for the VPC"
type = string
default = "192.170.0.0/20"
validation {
condition = (
tonumber(split("/", var.vpc_cidr)[1]) >= 16 &&
tonumber(split("/", var.vpc_cidr)[1]) <= 20
)
error_message = "CIDR size must be at least /20 and no larger than /16."
}
}