-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.tf
72 lines (60 loc) · 1.59 KB
/
config.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
variable "okta_org" {
type = string
description = "Okta Organization Name"
}
variable "okta_url" {
type = string
description = "Okta Base URL (okta.com or oktapreview.com)"
default = "oktapreview.com"
}
variable "okta_key" {
type = string
description = "Okta API Key"
}
variable "opa_key" {
type = string
description = "Okta Privileged Access API Key"
}
variable "opa_secret" {
type = string
description = "Okta Privileged Access API Secret"
}
variable "opa_team" {
type = string
description = "Okta Privileged Access Team Name"
}
variable "opa_host" {
type = string
description = "Okta Privileged Access API Host"
default = ""
}
variable "opa_k8s_group" {
type = string
description = "Okta Privileged Access group name for K8s access"
default = "everyone"
}
variable "aws_region" {
type = string
description = "AWS Region"
default = "eu-central-2"
}
variable "aws_linux_image_id" {
type = string
description = "AMI ID for Linux-based EC2 instances"
default = "ami-07cf963e6321c9e6a" # Ubuntu 22.04 LTS
}
variable "aws_windows_image_id" {
type = string
description = "AMI ID for Windows-based EC2 instances"
default = "ami-086f090975761e5c1" # Windows Server 2022 Base
}
variable "aws_gateway_instance_type" {
type = string
description = "Instance type for EC2 OPA Gateways"
default = "r6i.large"
}
variable "aws_server_instance_type" {
type = string
description = "Instance type for EC2 OPA Servers"
default = "t3.small"
}