-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
41 lines (35 loc) · 1.31 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
37
38
39
40
41
variable "aws_region" {
description = "AWS region to deploy the resources in"
type = string
default = "us-east-1" # Replace with your desired AWS region
}
variable "aws_instance_type" {
description = "Access Server EC2 instance type"
type = string
default = "t3.small" # Replace with your desired AWS instance type
}
variable "vpc_id" {
description = "ID of your existing Virtual Private Cloud (VPC)"
type = string
default = "vpc-d08f5daa" # Replace with your actual VPC ID
}
variable "subnet_id" {
description = "ID of your existing Subnet"
type = string
default = "subnet-c4ac21ea" # Replace with your actual Subnet ID
}
variable "key_name" {
description = "Name of an existing EC2 KeyPair to enable SSH access to the instance"
type = string
default = "OpenVPNAS-SSH" # Replace with your actual SSH Key uploaded to AWS Console
}
variable "admin_username" {
description = "The OpenVPN Access Server admin username"
type = string
default = "admin1" # Replace with your desired OpenVPN admin username
}
variable "admin_password" {
description = "The OpenVPN Access Server admin password"
type = string
default = "p@$w0rd" # Replace with your desired OpenVPN admin password
}