-
Notifications
You must be signed in to change notification settings - Fork 6
/
schema.yaml
3494 lines (3465 loc) · 128 KB
/
schema.yaml
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
name: cloud-toolkit-aws
license: Apache-2.0
logoUrl: null
displayName: Cloud Toolkit AWS
publisher: AstroKube
keywords:
- pulumi
- aws
- cloud-toolkit
- category/cloud
- kind/component
pluginDownloadURL: github://api.github.com/cloud-toolkit/cloud-toolkit-aws
types:
cloud-toolkit-aws:databases:MysqlVersion:
description: Set of allowed versions for the database instance
type: string
enum:
- name: V8_0
value: "8.0"
- name: V5_7
value: "5.7"
cloud-toolkit-aws:databases:MysqlStorageType:
description: Set of storage type classes for database instance
type: string
enum:
- name: standard
value: standard
- name: io1
value: io1
- name: gp2
value: gp2
cloud-toolkit-aws:email:NotificationTypes:
description: >-
Types of Email Notifications that are covered by Email Sender.
* Bounce usually occurs when the recipient address does not exist, their inbox is full, the content of the message if flagged or other casuistics.
* Complaint indicates that the recipient does not want the email that was sent to them. It is usually a proactive action and it is best to remove the recipient address from the mailing list whenever it is.
* Delivery marks an email as correctly delivered.
type: string
enum:
- name: Bounce
value: Bounce
- name: Complaint
value: Complaint
- name: Delivery
value: Delivery
cloud-toolkit-aws:kubernetes:ClusterSubnetsType:
description: The subnet type
type: string
enum:
- name: private
value: private
- name: public
value: public
cloud-toolkit-aws:serverless:DeadLetterQueueTypes:
description: >-
Dead Letter Queue type that will receive the faulty messages from
the base Queue.
Permissive - Messages will be sent to the Dead Letter Queue after 10 failed delivery attempts.
Restrictive - Messages will be sent to the Dead Letter Queue after the first failed delivery attempt.
type: string
enum:
- name: PERMISSIVE
value: permissive
- name: RESTRICTIVE
value: restrictive
cloud-toolkit-aws:storage:BucketVersioningState:
description: >-
Versioning object mode that is selected for the bucket.
Enabled - Bucket keeps track of object versioning.
Disabled - Bucket does not keep track of object versioning. Once versioning is Enabled we cannot Disabled versioning.
Suspended - Once versioning is Enabled, this feature can be suspended
type: string
enum:
- name: Enabled
value: Enabled
- name: Disabled
value: Disabled
- name: Suspended
value: Suspended
cloud-toolkit-aws:databases:AuroraMysql:
properties:
version:
description: Version for database
type: string
database:
description: Configuration parameters for the database
$ref: "#/types/cloud-toolkit-aws:databases:AuroraMysqlDatabase"
instanceType:
description: The instance type for the cluster
type: string
instancesCount:
description: The number of instances to be created for Aurora cluster
type: number
logging:
description: Logging configuration parameters for Aurora cluster
$ref: "#/types/cloud-toolkit-aws:databases:AuroraMysqlLogging"
monitoring:
description: Monitoring configuration parameters for Aurora cluster
$ref: "#/types/cloud-toolkit-aws:databases:AuroraMysqlMonitoring"
networking:
description: Networking configuration parameters for Aurora cluster
$ref: "#/types/cloud-toolkit-aws:databases:AuroraMysqlNetworking"
backup:
description: Backup configuration parameters for Aurora cluster
$ref: "#/types/cloud-toolkit-aws:databases:AuroraMysqlBackup"
type: object
required: []
cloud-toolkit-aws:databases:AuroraMysqlDatabase:
properties:
name:
description: The name of the database to create when the DB instance is created
type: string
username:
description: Username for database admin user
type: string
passwordLength:
description: Password length to login in the database
type: number
type: object
required: []
cloud-toolkit-aws:databases:AuroraMysqlBackup:
properties:
preferredWindow:
description: Time window in which backups should be taken
type: string
retentionDays:
description: Retention days for backups
type: number
type: object
required: []
cloud-toolkit-aws:databases:AuroraMysqlLogging:
properties:
audit:
description: Enable audit logging
type: boolean
error:
description: Enable error logging
type: boolean
general:
description: Enable general logging
type: boolean
slowquery:
description: Enable slowquery logging
type: boolean
type: object
required: []
cloud-toolkit-aws:databases:AuroraMysqlMonitoring:
properties:
enabled:
description: Enable cluster alerting with CloudWatch
type: boolean
emails:
description: Emails that will receive the alerts
type: array
items:
description: Emails that will receive the alerts
type: string
type: object
required: []
cloud-toolkit-aws:databases:AuroraMysqlNetworking:
properties:
allowedCidr:
description: Allowed CIDRs that connect to the cluster
type: array
items:
description: Allowed CIDRs that connect to the cluster
type: string
allowInternet:
description: Allow traffic from Internet
type: boolean
subnetIds:
description: Subnets belonging to a Virtual Private Cloud where cluster must be
deployed
type: array
items:
description: Subnets belonging to a Virtual Private Cloud where cluster must be
deployed
type: string
vpc:
description: Virtual Private Cloud where instances must be deployed
type: string
type: object
required: []
cloud-toolkit-aws:databases:Mysql:
properties:
instance:
description: Instance type to run the database instance
type: string
version:
description: Version for database instance
$ref: "#/types/cloud-toolkit-aws:databases:MysqlVersion"
database:
description: Configuration parameters for the database instance
$ref: "#/types/cloud-toolkit-aws:databases:MysqlDatabase"
storage:
description: Storage configuration parameters for the database instance
$ref: "#/types/cloud-toolkit-aws:databases:MysqlStorage"
networking:
description: Network configuration parameters for the database instance
$ref: "#/types/cloud-toolkit-aws:databases:MysqlNetworking"
backup:
description: Backup configuration parameters for the database instance
$ref: "#/types/cloud-toolkit-aws:databases:MysqlBackup"
type: object
required:
- version
- database
cloud-toolkit-aws:databases:MysqlDatabase:
properties:
name:
description: The name of the database to create when the DB instance is created
type: string
username:
description: Username for database admin user
type: string
passwordLength:
description: Password length to login in the database instance
type: number
type: object
required:
- name
- username
cloud-toolkit-aws:databases:MysqlBackup:
properties:
preferredWindow:
description: Time window in which backups should be taken
type: string
retentionDays:
description: Retention days for backups
type: number
type: object
required: []
cloud-toolkit-aws:databases:MysqlStorage:
properties:
size:
description: Storage size allocated for database instance
type: number
type:
description: Storage type class for database instance
$ref: "#/types/cloud-toolkit-aws:databases:MysqlStorageType"
type: object
required: []
cloud-toolkit-aws:databases:MysqlNetworking:
properties:
vpc:
description: Virtual Private Cloud where database instance must be deployed
type: string
subnetIds:
description: Subnets belonging to a Virtual Private Cloud where database
instance must be deployed
type: array
items:
description: Subnets belonging to a Virtual Private Cloud where database
instance must be deployed
type: string
allowedCidr:
description: Allowed CIDRs that connect to the database instance
type: array
items:
description: Allowed CIDRs that connect to the database instance
type: string
type: object
required: []
cloud-toolkit-aws:email:AdditionalQueue:
properties:
arn:
description: Amazon Resource Name for the Queue component.
type: string
url:
description: Endpoint of the Queue component in AWS.
type: string
type: object
required:
- arn
- url
cloud-toolkit-aws:email:NotificationTypeQueues:
properties:
numberOfDefaultQueues:
description: Number of default Queues that will be created and attached to a Topic.
type: number
defaultQueuesConfig:
description: Configuration for the Default Queues. If left blank, Queues created
for this Notification Type will be standard, non-fifo, with a Dead
Letter Queue attached to them.
$ref: "#/types/cloud-toolkit-aws:serverless:Queue"
additionalQueues:
description: Arguments to include Queues built and implemented outside of the
Email Sender Component. Useful when subscribing a single Queue to two
or more Topics or when migrating existing ones.
type: array
items:
description: Arguments to include Queues built and implemented outside of the
Email Sender Component. Useful when subscribing a single Queue to
two or more Topics or when migrating existing ones.
$ref: "#/types/cloud-toolkit-aws:email:AdditionalQueue"
type: object
required:
- numberOfDefaultQueues
- additionalQueues
cloud-toolkit-aws:email:NotificationType:
properties:
enabled:
description: Enables the feature.
type: boolean
includeOriginalHeaders:
description: Include original headers on the stored messages in the Queue(s).
type: boolean
queues:
description: >-
Arguments to configure the Queues subscribed to the Notification
Type Topic.
If left blank, a default standard, non-fifo, Queue and a Dead Letter Queue that is attached to the former will be created.
$ref: "#/types/cloud-toolkit-aws:email:NotificationTypeQueues"
type: object
required:
- enabled
cloud-toolkit-aws:email:EmailSender:
properties:
identity:
description: >-
Address of the Domain or Email used to send the emails through
Email Sender.
If an Email address is provided, Email Sender will set a Simple Email Service Email Identity. Verification will need to be manual.
Else, if a Domain address is configured, Email Sender will create a Simple Email Service Domain Identity.
By default, it will attempt to verify the Domain by looking the Route 53 Domain Registry in the AWS account that is applying the infrastructure changes.
If the Domain is registered elsewhere, verification needs to be manual.
type: string
configureDNS:
description: >-
In the case of a Domain Identity, enables automatic verification by
creating DKIM DNS Records in the domain registration on Route 53.
If the domain is not registered in the Route 53 on the same AWS account that is applying the infrastructure changes, the process will fail unless this flag is set to False.
type: boolean
bounce:
description: Arguments to manage incoming Bounce notifications.
$ref: "#/types/cloud-toolkit-aws:email:NotificationType"
complaint:
description: Arguments to manage incoming Complaint notifications.
$ref: "#/types/cloud-toolkit-aws:email:NotificationType"
delivery:
description: Arguments to manage incoming Delivery notifications.
$ref: "#/types/cloud-toolkit-aws:email:NotificationType"
type: object
required:
- identity
cloud-toolkit-aws:email:DnsDkimRecord:
properties:
name:
description: Name of the Record.
type: string
token:
description: Token of the Record.
type: string
type: object
required:
- name
- token
cloud-toolkit-aws:kubernetes:AdotApplicationLoggingItem:
properties:
dataRetention:
description: Data retention expressed in days.
type: number
type: object
required:
- dataRetention
cloud-toolkit-aws:kubernetes:AdotApplicationMetrics:
properties:
enabled:
description: Enable metrics.
type: boolean
dataRetention:
description: Data retention expressed in days.
type: number
type: object
required: []
cloud-toolkit-aws:kubernetes:AdotApplication:
properties:
metrics:
description: Configure metrics.
$ref: "#/types/cloud-toolkit-aws:kubernetes:AdotApplicationMetrics"
clusterName:
description: The cluster name.
type: string
awsRegion:
description: The AWS Region.
type: string
type: object
required:
- clusterName
- awsRegion
cloud-toolkit-aws:kubernetes:AdotOperator:
properties: {}
type: object
required: []
cloud-toolkit-aws:kubernetes:ApplicationAddon:
properties:
k8sProvider:
description: Kubernetes provider used by Pulumi.
$ref: /kubernetes/v3.21.2/schema.json#/provider
name:
description: The name of the instanced component.
type: string
namespace:
description: The Namespace name where the addon will be installed.
type: string
createNamespace:
description: Create a new Namespace using the given name.
type: boolean
type: object
required:
- k8sProvider
- name
- namespace
cloud-toolkit-aws:kubernetes:IrsaApplicationAddon:
properties:
identityProvidersArn:
description: The OIDC Identity Provider arn used by the IRSA.
type: array
items:
description: The OIDC Identity Provider arn used by the IRSA.
type: string
issuerUrl:
description: The OIDC Identity Provider url used by the IRSA.
type: string
serviceAccountName:
description: The Service Account name used in Kubernetes.
type: string
type: object
required:
- identityProvidersArn
- issuerUrl
- serviceAccountName
cloud-toolkit-aws:kubernetes:ArgoCD:
properties:
hostname:
description: The hostname to be used to expose ArgoCD with an Ingress.
type: string
type: object
required: []
cloud-toolkit-aws:kubernetes:AwsLoadBalancerController:
properties:
clusterName:
description: The Cluster name.
type: string
type: object
required:
- clusterName
cloud-toolkit-aws:kubernetes:AwsSecretsStoreCsiDriver:
properties: {}
type: object
required: []
cloud-toolkit-aws:kubernetes:Calico:
properties: {}
type: object
required: []
cloud-toolkit-aws:kubernetes:CertManager:
properties:
zoneArns:
description: The list of DNS Zone arn to be used by CertManager.
type: array
items:
description: The list of DNS Zone arn to be used by CertManager.
type: string
type: object
required:
- zoneArns
cloud-toolkit-aws:kubernetes:ClusterAddons:
properties:
k8sProvider:
description: The Pulumi provider used for Kubernetes resources.
$ref: /kubernetes/v3.21.2/schema.json#/provider
clusterName:
description: The EKS Cluster name.
type: string
identityProvidersArn:
description: The OIDC Identity Provider arn.
type: array
items:
description: The OIDC Identity Provider arn.
type: string
issuerUrl:
description: The OIDC Identity Provider url.
type: string
logging:
description: Configure the cluster observability for logging.
$ref: "#/types/cloud-toolkit-aws:kubernetes:FluentbitLogging"
metrics:
description: Configure the cluster observability for metrics.
$ref: "#/types/cloud-toolkit-aws:kubernetes:AdotApplicationMetrics"
ingress:
description: The configuration for Ingress Controller.
$ref: "#/types/cloud-toolkit-aws:kubernetes:ClusterAddonsIngress"
type: object
required:
- k8sProvider
- clusterName
- identityProvidersArn
- issuerUrl
cloud-toolkit-aws:kubernetes:ClusterAddonsIngress:
properties:
admin:
description: Configure the admin IngressController.
$ref: "#/types/cloud-toolkit-aws:kubernetes:ClusterAddonsIngressItem"
default:
description: Configure the default IngressController.
$ref: "#/types/cloud-toolkit-aws:kubernetes:ClusterAddonsIngressItem"
type: object
required: []
cloud-toolkit-aws:kubernetes:ClusterAddonsIngressItem:
properties:
public:
description: Use a public Load Balancer to expose the IngressController.
type: boolean
domain:
description: The domain used to expose the IngressController.
type: string
whitelist:
description: Set a whitelist to access the IngressController.
type: array
items:
description: Set a whitelist to access the IngressController.
type: string
enableTlsTermination:
description: Enable TLS termination in Load Balancer.
type: boolean
type: object
required: []
cloud-toolkit-aws:kubernetes:ClusterAdmins:
properties:
name:
description: The name for the group of Cluster Admins.
type: string
kubeconfig:
description: Kubernetes provider used by Pulumi.
type: string
userArns:
description: The list of AWS IAM User arns.
type: array
items:
description: The list of AWS IAM User arns.
type: string
type: object
required:
- name
- kubeconfig
- userArns
cloud-toolkit-aws:kubernetes:Cluster:
properties:
vpcId:
description: The VPC ID where the cluster will be deployed
type: string
privateSubnetIds:
description: The list of private subnet ids where for the EKS cluster. These
subnets will be tagged for Kubernetes purposes.
type: array
items:
description: The list of private subnet ids where for the EKS cluster. These
subnets will be tagged for Kubernetes purposes.
type: string
publicSubnetIds:
description: The list of public subnet ids where for the EKS cluster. These
subnets will be tagged for Kubernetes purposes.
type: array
items:
description: The list of public subnet ids where for the EKS cluster. These
subnets will be tagged for Kubernetes purposes.
type: string
version:
description: Desired Kubernetes version for control plane. Defaults to '1.23'.
type: string
api:
description: Configure the Kubernetes cluster API.
$ref: "#/types/cloud-toolkit-aws:kubernetes:ClusterApi"
nodeGroups:
description: The NodeGroups to be assigned to this cluster.
type: array
items:
description: The NodeGroups to be assigned to this cluster.
$ref: "#/types/cloud-toolkit-aws:kubernetes:ClusterNodeGroup"
oidcProviders:
description: The OIDC Providers configuration.
$ref: "#/types/cloud-toolkit-aws:kubernetes:ClusterOidcProviders"
addons:
description: The addons installed in the cluster.
$ref: "#/types/cloud-toolkit-aws:kubernetes:Addons"
networking:
description: Configure the cluster networking.
$ref: "#/types/cloud-toolkit-aws:kubernetes:ClusterNetworking"
logging:
description: Configure the cluster observability for logging.
$ref: "#/types/cloud-toolkit-aws:kubernetes:FluentbitLogging"
metrics:
description: Configure the cluster observability for metrics.
$ref: "#/types/cloud-toolkit-aws:kubernetes:AdotApplicationMetrics"
authentication:
description: Configure authentication integrated with AWS IAM.
$ref: "#/types/cloud-toolkit-aws:kubernetes:ClusterAuthentication"
type: object
required: []
cloud-toolkit-aws:kubernetes:ClusterAuthentication:
properties:
accounts:
description: The list of AWS Accounts that can authenticate with the API Server.
type: array
items:
description: The list of AWS Accounts that can authenticate with the API Server.
type: string
clusterAdmins:
description: The list of AWS IAM Users names to be configured as cluster-admin.
type: array
items:
description: The list of AWS IAM Users names to be configured as cluster-admin.
type: string
roles:
description: The list of AWS IAM Roles that can authenticate with the API server.
type: array
items:
description: The list of AWS IAM Roles that can authenticate with the API server.
$ref: "#/types/cloud-toolkit-aws:kubernetes:IamAuthenticatorRole"
users:
description: The list of AWS IAM Users that can authenticate with the API server.
type: array
items:
description: The list of AWS IAM Users that can authenticate with the API server.
$ref: "#/types/cloud-toolkit-aws:kubernetes:IamAuthenticatorUser"
type: object
required: []
cloud-toolkit-aws:kubernetes:ClusterNetworking:
properties:
admin:
description: Configure the access to admin applications.
$ref: "#/types/cloud-toolkit-aws:kubernetes:ClusterNetworkingIngress"
default:
description: Configure the access to applications.
$ref: "#/types/cloud-toolkit-aws:kubernetes:ClusterNetworkingIngress"
type: object
required: []
cloud-toolkit-aws:kubernetes:ClusterNetworkingIngress:
properties:
public:
description: Use a public Load Balancer to expose the IngressController.
type: boolean
domain:
description: The domain used to expose the IngressController.
type: string
whitelist:
description: Set a whitelist to access the IngressController.
type: array
items:
description: Set a whitelist to access the IngressController.
type: string
enableTlsTermination:
description: Enable TLS termination in Load Balancer.
type: boolean
type: object
required:
- domain
cloud-toolkit-aws:kubernetes:Addons:
properties:
enabled:
description: Enable the ClusterAddons.
type: boolean
type: object
required:
- enabled
cloud-toolkit-aws:kubernetes:ClusterApi:
properties:
public:
description: Configure the public endpoint for the Kubernetes API.
$ref: "#/types/cloud-toolkit-aws:kubernetes:ClusterPublicApi"
private:
description: Configure the private endpoint for the Kubernetes API.
$ref: "#/types/cloud-toolkit-aws:kubernetes:ClusterPrivateApi"
type: object
required: []
cloud-toolkit-aws:kubernetes:ClusterPublicApi:
properties:
enabled:
description: Enable the public endpoint for Kubernetes API.
type: boolean
whitelist:
description: The list of CIDR that will be allowed to reach the public endpoint
for Kubernetes API.
type: array
items:
description: The list of CIDR that will be allowed to reach the public endpoint
for Kubernetes API.
type: string
type: object
required: []
cloud-toolkit-aws:kubernetes:ClusterPrivateApi:
properties:
enabled:
description: Enable the private endpoint for Kubernetes API.
type: boolean
type: object
required: []
cloud-toolkit-aws:kubernetes:ClusterNodeGroup:
properties:
name:
description: The Node Group name.
type: string
subnetsType:
description: The subnets type to be used to deploy the Node Groups.
$ref: "#/types/cloud-toolkit-aws:kubernetes:ClusterSubnetsType"
instanceType:
description: The EC2 Instance Type to be used to create the Nodes.
type: string
minCount:
description: The minimum number of nodes running in the node group. Defaults to 1.
type: number
maxCount:
description: The maxium number of nodes running in the node group. Defaults to 2.
type: number
maxUnavailable:
description: The maximum number of nodes unavailable at once during a version
update. Defaults to 1.
type: number
diskSize:
description: Disk size in GiB for each node. Defaults to 20.
type: number
type: object
required:
- name
- minCount
- maxCount
- maxUnavailable
cloud-toolkit-aws:kubernetes:ClusterOidcProviders:
properties:
enableDefaultProvider:
description: Enable the default OIDC Provider that is used in the cluster to let
Service Accounts to authenticate against AWS with a given IAM Role.
type: boolean
type: object
required:
- enableDefaultProvider
cloud-toolkit-aws:kubernetes:ClusterAutoscaler:
properties:
clusterName:
description: The Cluster name.
type: string
type: object
required:
- clusterName
cloud-toolkit-aws:kubernetes:Dashboard:
properties:
hostname:
description: The hostname associated with the dashboard.
type: string
type: object
required: []
cloud-toolkit-aws:kubernetes:AwsEbsCsiDriver:
properties: {}
type: object
required: []
cloud-toolkit-aws:kubernetes:ExternalDns:
properties:
zoneArns:
description: The list of DNS Zone arn to be used by ExternalDns.
type: array
items:
description: The list of DNS Zone arn to be used by ExternalDns.
type: string
type: object
required:
- zoneArns
cloud-toolkit-aws:kubernetes:FluentbitLoggingItem:
properties:
dataRetention:
description: Data retention expressed in days.
type: number
enabled:
description: Enable logging.
type: boolean
type: object
required:
- enabled
cloud-toolkit-aws:kubernetes:FluentbitLogging:
properties:
applications:
description: Configure applications logging.
$ref: "#/types/cloud-toolkit-aws:kubernetes:FluentbitLoggingItem"
dataplane:
description: Configure data plane logging.
$ref: "#/types/cloud-toolkit-aws:kubernetes:FluentbitLoggingItem"
host:
description: Configure host logging.
$ref: "#/types/cloud-toolkit-aws:kubernetes:FluentbitLoggingItem"
type: object
required: []
cloud-toolkit-aws:kubernetes:Fluentbit:
properties:
logging:
description: Configure logging.
$ref: "#/types/cloud-toolkit-aws:kubernetes:FluentbitLogging"
clusterName:
description: The cluster name.
type: string
awsRegion:
description: The AWS Region.
type: string
type: object
required:
- clusterName
- awsRegion
cloud-toolkit-aws:kubernetes:IamAuthenticator:
properties:
accounts:
description: List of AWS Accounts allowed to authenticate in the cluster.
type: array
items:
description: List of AWS Accounts allowed to authenticate in the cluster.
type: string
clusterArn:
description: The EKS Cluster ARN.
type: string
kubeconfig:
description: The Kubeconfig to access to the cluster.
type: string
roles:
description: The list of AWS IAM Roles to generate the aws-auth ConfigMap.
type: array
items:
description: The list of AWS IAM Roles to generate the aws-auth ConfigMap.
$ref: "#/types/cloud-toolkit-aws:kubernetes:IamAuthenticatorRole"
nodeGroupRoles:
description: The list of AWS IAM Roles for NodeGroups to generate the aws-auth
ConfigMap.
type: array
items:
description: The list of AWS IAM Roles for NodeGroups to generate the aws-auth
ConfigMap.
$ref: "#/types/cloud-toolkit-aws:kubernetes:IamAuthenticatorRole"
users:
description: The list of AWS IAM Users to generate the aws-auth ConfigMap.
type: array
items:
description: The list of AWS IAM Users to generate the aws-auth ConfigMap.
$ref: "#/types/cloud-toolkit-aws:kubernetes:IamAuthenticatorUser"
clusterAdmins:
description: The list of AWS IAM Users names to be configured as cluster-admin.
type: array
items:
description: The list of AWS IAM Users names to be configured as cluster-admin.
type: string
type: object
required:
- clusterArn
- kubeconfig
cloud-toolkit-aws:kubernetes:IamAuthenticatorRole:
properties:
rolearn:
description: The AWS IAM Role arn.
type: string
groups:
description: The list of Kubernetes groups to be associated with the AWS IAM Role.
type: array
items:
description: The list of Kubernetes groups to be associated with the AWS IAM Role.
type: string
username:
description: The Kubernetes username to be associated with the AWS IAM Role.
type: string
type: object
required:
- rolearn
- username
cloud-toolkit-aws:kubernetes:IamAuthenticatorUser:
properties:
userarn:
description: The AWS IAM User arn.
type: string
groups:
description: The list of Kubernetes groups to be associated with the AWS IAM User.
type: array
items:
description: The list of Kubernetes groups to be associated with the AWS IAM User.
type: string
username:
description: The Kubernetes username to be associated with the AWS IAM User.
type: string
type: object
required:
- userarn
- username
cloud-toolkit-aws:kubernetes:IngressNginx:
properties:
tls:
description: The domain associated to the IngressController.
$ref: "#/types/cloud-toolkit-aws:kubernetes:IngressNginxTls"
className:
description: The Ingress class name.
type: string
whitelist:
description: The whitelist of CIDR to access to the Ingress Controller.
type: array
items:
description: The whitelist of CIDR to access to the Ingress Controller.
type: string
public:
description: Expose the IngressController with a public Load Balancer.
type: boolean
default:
description: Set this IngressController with the defaul IngressClass.
type: boolean
type: object
required:
- className
cloud-toolkit-aws:kubernetes:IngressNginxTls:
properties:
enabled:
description: Enable the signed Certificate.
type: boolean
domain:
description: The domain to be used to create a signed Certificate.
type: string
zoneId:
description: The Zone id.
type: string
type: object
required:
- domain
- zoneId
cloud-toolkit-aws:kubernetes:Irsa:
properties:
identityProvidersArn:
description: The OIDC Identity Provider arn used by the IRSA.
type: array
items:
description: The OIDC Identity Provider arn used by the IRSA.
type: string
issuerUrl:
description: The OIDC Identity Provider url used by the IRSA.
type: string
k8sProvider:
description: Kubernetes provider used by Pulumi.
$ref: /kubernetes/v3.21.2/schema.json#/provider
namespace:
description: The Namespace name where the addon will be installed.
type: string
serviceAccountName:
description: The Service Account name used in Kubernetes.
type: string
policies:
description: The list of Policies to be associated to the Irsa.
type: array
items:
description: The list of Policies to be associated to the Irsa.
type: string
type: object
required:
- identityProvidersArn
- issuerUrl
- k8sProvider
- namespace
- serviceAccountName
- policies
cloud-toolkit-aws:kubernetes:NodeGroup:
properties:
name:
description: The name that identies the resource.
type: string
clusterVersion:
description: The Kubernetes cluster version.
type: string
clusterEndpoint:
description: The Kubernetes cluster endpoint.
type: string
clusterCA:
description: The CA used by the Kubernetes cluster.
type: string
clusterName:
description: The Kubernetes cluster name.
type: string
subnetIds:
description: The list of subnets ids where the nodes will be deployed.
type: array
items:
description: The list of subnets ids where the nodes will be deployed.
type: string
instanceType:
description: The aws instance type to use for the nodes. Defaults to "t3.medium".
type: string
minCount:
description: The minimum number of nodes running in the node group. Defaults to 1.
type: number