File tree Expand file tree Collapse file tree 2 files changed +10
-5
lines changed Expand file tree Collapse file tree 2 files changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -83,11 +83,11 @@ module "eks" {
83
83
84
84
# apply when available: iam_role_permissions_boundary = "arn:aws:iam::${local.account_id}:policy/service-user-creation-permission-boundary"
85
85
eks_managed_node_group_defaults = {
86
- disk_size = 50
86
+ disk_size = 256
87
87
disk_type = " gp3"
88
88
disk_throughput = 150
89
89
disk_iops = 3000
90
- instance_types = [" t3a.large " ]
90
+ instance_types = [" t3a.medium " ]
91
91
92
92
iam_role_additional_policies = [
93
93
" arn:aws:iam::aws:policy/AmazonEKSWorkerNodePolicy" ,
@@ -102,11 +102,11 @@ module "eks" {
102
102
bottlerocket_default = {
103
103
create_launch_template = false
104
104
launch_template_name = " "
105
- min_size = 1
105
+ min_size = 3
106
106
max_size = 50
107
- desired_size = 1
107
+ desired_size = 3
108
108
109
- capacity_type = " SPOT "
109
+ capacity_type = " ON_DEMAND "
110
110
111
111
ami_type = " BOTTLEROCKET_x86_64"
112
112
platform = " bottlerocket"
Original file line number Diff line number Diff line change @@ -21,3 +21,8 @@ variable "extra_allowed_ip_ranges" {
21
21
type = list (string )
22
22
default = []
23
23
}
24
+
25
+ variable "state_bucket_arn" {
26
+ description = " ARN of the state bucket to grant access to the s3 user"
27
+ type = string
28
+ }
You can’t perform that action at this time.
0 commit comments