-
Notifications
You must be signed in to change notification settings - Fork 1
/
xcomposite.crossplane.giantswarm.io_rccwithregionlookups.yaml
3231 lines (3023 loc) · 162 KB
/
xcomposite.crossplane.giantswarm.io_rccwithregionlookups.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
---
apiVersion: apiextensions.crossplane.io/v1
kind: CompositeResourceDefinition
metadata:
annotations:
controller-gen.kubebuilder.io/version: (unknown)
creationTimestamp: null
name: rccwithregionlookups.xcomposite.crossplane.giantswarm.io
spec:
claimNames:
kind: RCCWithRegionLookupClaim
plural: rccwithregionlookupclaims
defaultCompositionRef:
name: rcc-with-region-lookup
enforcedCompositionRef:
name: rcc-with-region-lookup
group: xcomposite.crossplane.giantswarm.io
names:
kind: RCCWithRegionLookup
listKind: RCCWithRegionLookupList
plural: rccwithregionlookups
shortNames:
- rccwrl
singular: rccwithregionlookup
versions:
- name: v1alpha1
referenceable: true
schema:
openAPIV3Schema:
properties:
spec:
description: |-
RCCWithRegionLookupSpec contains the structure required for building the
infrastructure for an RDS + Elasticache Cluster.
properties:
clusterDiscovery:
description: ClusterDiscovery is the reference to the cluster to discover
properties:
name:
description: Name is the name of the cluster to discover
type: string
namespace:
description: Namespace is the namespace of the cluster to discover
type: string
remoteNamespace:
description: |-
RemoteNamespace is the namespace on the remote cluster to
apply secrets into. If not specified, the default namespace
is used.
type: string
required:
- name
- namespace
type: object
deletionPolicy:
default: Delete
description: |-
DeletionPolicy specifies what will happen to the underlying external
when this managed resource is deleted - either "Delete" or "Orphan" the
external resource.
This field is planned to be deprecated in favor of the ManagementPolicies
field in a future release. Currently, both could be set independently and
non-default values would be honored if the feature flag is enabled.
See the design doc for more information: https://github.com/crossplane/crossplane/blob/499895a25d1a1a0ba1604944ef98ac7a1a71f197/design/design-doc-observe-only-resources.md?plain=1#L223
enum:
- Orphan
- Delete
type: string
kubernetesProviderConfig:
description: KubernetesProviderConfig
properties:
name:
description: Name of the referenced object.
type: string
policy:
description: Policies for referencing.
properties:
resolution:
default: Required
description: |-
Resolution specifies whether resolution of this reference is required.
The default is 'Required', which means the reconcile will fail if the
reference cannot be resolved. 'Optional' means this reference will be
a no-op if it cannot be resolved.
enum:
- Required
- Optional
type: string
resolve:
description: |-
Resolve specifies when this reference should be resolved. The default
is 'IfNotPresent', which will attempt to resolve the reference only when
the corresponding field is not present. Use 'Always' to resolve the
reference on every reconcile.
enum:
- Always
- IfNotPresent
type: string
type: object
required:
- name
type: object
managementClusterDiscovery:
description: ManagementClusterDiscovery is the reference to the management
cluster
properties:
name:
description: Name is the name of the cluster to discover
type: string
namespace:
description: Namespace is the namespace of the cluster to discover
type: string
remoteNamespace:
description: |-
RemoteNamespace is the namespace on the remote cluster to
apply secrets into. If not specified, the default namespace
is used.
type: string
required:
- name
- namespace
type: object
managementPolicies:
default:
- '*'
description: |-
THIS IS A BETA FIELD. It is on by default but can be opted out
through a Crossplane feature flag.
ManagementPolicies specify the array of actions Crossplane is allowed to
take on the managed and external resources.
This field is planned to replace the DeletionPolicy field in a future
release. Currently, both could be set independently and non-default
values would be honored if the feature flag is enabled. If both are
custom, the DeletionPolicy field will be ignored.
See the design doc for more information: https://github.com/crossplane/crossplane/blob/499895a25d1a1a0ba1604944ef98ac7a1a71f197/design/design-doc-observe-only-resources.md?plain=1#L223
and this one: https://github.com/crossplane/crossplane/blob/444267e84783136daa93568b364a5f01228cacbe/design/one-pager-ignore-changes.md
items:
description: |-
A ManagementAction represents an action that the Crossplane controllers
can take on an external resource.
enum:
- Observe
- Create
- Update
- Delete
- LateInitialize
- '*'
type: string
type: array
providerConfigRef:
default:
name: default
description: |-
ProviderConfigReference specifies how the provider that will be used to
create, observe, update, and delete this managed resource should be
configured.
properties:
name:
description: Name of the referenced object.
type: string
policy:
description: Policies for referencing.
properties:
resolution:
default: Required
description: |-
Resolution specifies whether resolution of this reference is required.
The default is 'Required', which means the reconcile will fail if the
reference cannot be resolved. 'Optional' means this reference will be
a no-op if it cannot be resolved.
enum:
- Required
- Optional
type: string
resolve:
description: |-
Resolve specifies when this reference should be resolved. The default
is 'IfNotPresent', which will attempt to resolve the reference only when
the corresponding field is not present. Use 'Always' to resolve the
reference on every reconcile.
enum:
- Always
- IfNotPresent
type: string
type: object
required:
- name
type: object
publishConnectionDetailsTo:
description: |-
PublishConnectionDetailsTo specifies the connection secret config which
contains a name, metadata and a reference to secret store config to
which any connection details for this managed resource should be written.
Connection details frequently include the endpoint, username,
and password required to connect to the managed resource.
properties:
configRef:
default:
name: default
description: |-
SecretStoreConfigRef specifies which secret store config should be used
for this ConnectionSecret.
properties:
name:
description: Name of the referenced object.
type: string
policy:
description: Policies for referencing.
properties:
resolution:
default: Required
description: |-
Resolution specifies whether resolution of this reference is required.
The default is 'Required', which means the reconcile will fail if the
reference cannot be resolved. 'Optional' means this reference will be
a no-op if it cannot be resolved.
enum:
- Required
- Optional
type: string
resolve:
description: |-
Resolve specifies when this reference should be resolved. The default
is 'IfNotPresent', which will attempt to resolve the reference only when
the corresponding field is not present. Use 'Always' to resolve the
reference on every reconcile.
enum:
- Always
- IfNotPresent
type: string
type: object
required:
- name
type: object
metadata:
description: Metadata is the metadata for connection secret.
properties:
annotations:
additionalProperties:
type: string
description: |-
Annotations are the annotations to be added to connection secret.
- For Kubernetes secrets, this will be used as "metadata.annotations".
- It is up to Secret Store implementation for others store types.
type: object
labels:
additionalProperties:
type: string
description: |-
Labels are the labels/tags to be added to connection secret.
- For Kubernetes secrets, this will be used as "metadata.labels".
- It is up to Secret Store implementation for others store types.
type: object
type:
description: |-
Type is the SecretType for the connection secret.
- Only valid for Kubernetes Secret Stores.
type: string
type: object
name:
description: Name is the name of the connection secret.
type: string
required:
- name
type: object
rdsCacheClusterParameters:
description: RdsCacheClusterSpec is the spec for the RDS Cache Cluster
properties:
cache:
description: Cache defines the cache settings
properties:
applyImmediately:
description: |-
ApplyImmediately specifies whether the changes should be applied
immediately or during the next maintenance window.
type: boolean
atRestEncryptionEnabled:
description: |-
AtRestEncryptionEnabled specifies whether data stored in the cluster is
encrypted at rest.
type: boolean
authTokenUpdateStrategy:
description: AuthTokenUpdateStrategy specifies how the auth
token should be updated.
enum:
- rotate
- set
type: string
autoMinorVersionUpgrade:
description: |-
AutoMinorVersionUpgrade specifies whether minor engine upgrades will be
applied automatically to the cluster during the maintenance window.
type: boolean
automaticFailoverEnabled:
description: |-
AutomaticFailoverEnabled specifies whether a read replica will be
automatically promoted to the primary cluster if the existing primary
cluster fails.
If enabled, NumCacheNodes must be greater than 1. Must be enabled for
Redis (cluster mode enabled) replication groups.
type: boolean
azMode:
description: |-
AzMode specifies the Availability Zone mode of the cluster.
This parameter is only valid when the Engine parameter is memcached.
For resiliance, we recommend setting the AzMode parameter to cross-az and
this is the default value. In this mode, the number of nodes must be > 1
If memcached is selected, the number of nodes will default to 3, one per
availability zone.
enum:
- single-az
- cross-az
type: string
cacheClusters:
description: |-
CacheClusters is a list of cache clusters in the replication group.
This value is overridden by NumCacheClusters.
May be used to specify cluster specific configuration.
items:
properties:
applyImmediately:
description: |-
ApplyImmediately specifies whether the changes should be applied
immediately or during the next maintenance window.
type: boolean
autoMinorVersionUpgrade:
description: |-
AutoMinorVersionUpgrade specifies whether minor engine upgrades will be
applied automatically to the cluster during the maintenance window.
type: boolean
availabilityZone:
description: |-
AvailabilityZone is the name of the Availability Zone in which the
cluster will be created.
If you want to create cache nodes in multi-az, use
preferred_availability_zones instead.
Default: System chosen Availability Zone.
type: string
azMode:
description: |-
AzMode specifies the Availability Zone mode of the cluster.
This parameter is only valid when the Engine parameter is memcached.
For resiliance, we recommend setting the AzMode parameter to cross-az and
this is the default value. In this mode, the number of nodes must be > 1
If memcached is selected, the number of nodes will default to 3, one per
availability zone.
enum:
- single-az
- cross-az
type: string
engine:
description: |-
Engine is the name of the cache engine to be used for the clusters in
this group.
enum:
- memcached
- redis
type: string
engineVersion:
description: |-
EngineVersion is the version number of the cache engine to be used for
the cluster. If not set this will default to the latest version.
This value will be ignored once the cluster is created.
type: string
finalSnapshotIdentifier:
description: |-
FinalSnapshotIdentifier is the user-supplied name for the final snapshot
that is created immediately before the cluster is deleted.
type: string
ipDiscovery:
description: IpDiscovery is the method used to discover
cluster nodes.
enum:
- ipv4
- ipv6
type: string
logDeliveryConfigurations:
description: |-
LogDeliveryConfiguration is a list of log delivery configurations for
the cluster.
This is only applicable when the Engine parameter is redis.
items:
properties:
destination:
description: Destination Name of the cloudwatch
log group or for kinesis firehose resource.
type: string
destinationType:
description: DestinationType The destination type
for the logs.
enum:
- cloudwatch-logs
- kinesis-firehose
type: string
logFormat:
description: LogFormat The log format to use.
enum:
- text
- json
type: string
logType:
description: LogType The type of log to deliver.
enum:
- slow-log
- engine-log
type: string
required:
- destination
- destinationType
- logType
type: object
type: array
maintenanceWindow:
description: |-
MaintenanceWindow specifies the weekly time range during which system
maintenance can occur.
type: string
networkType:
description: NetworkType specifies the network configuration
for the cluster.
enum:
- ipv4
- ipv6
- dual_stack
type: string
nodeType:
description: |-
NodeType is the instance class to use for the cache nodes.
Requried unless replication group is specified.
type: string
notificationTopicArn:
description: |-
NotificationTopicArn is the Amazon Resource Name (ARN) of the Amazon SNS
topic to which notifications will be sent.
type: string
numCacheNodes:
description: |-
NumCacheNodes is the number of cache nodes in the cluster.
Required unless replication group is specified.
format: int64
type: integer
outpostMode:
description: |-
OutpostMode specifies the outpost mode that will apply to the cache
cluster creation.
Currently only single-outpost is supported.
enum:
- single-outpost
- cross-outpost
type: string
parameterGroupName:
description: |-
ParameterGroupName is the name of the parameter group to associate with
this cluster.
Required unless replication group is specified.
type: string
port:
description: |-
Port is the port number on which each of the cache nodes will accept
connections.
format: int64
type: integer
preferredAvailabilityZones:
description: |-
PreferredAvailabilityZones is a list of Availability Zones in which the
cluster's nodes will be created.
Memcached only. The number of availability zones must equal the number of
nodes specified in the NumCacheNodes parameter.
items:
type: string
type: array
preferredOutpostArn:
description: |-
PreferredOutpostArn is the Amazon Resource Name (ARN) of the outpost in
which the cache cluster will be created.
type: string
securityGroupIds:
description: |-
SecurityGroupIds is a list of security group IDs to associate with the
cluster.
items:
type: string
type: array
snapshotArns:
description: |-
SnapshotArns is a list of Amazon Resource Names (ARNs) of the snapshots
from which to restore data into the cluster.
Optional, Redis only
items:
type: string
type: array
snapshotName:
description: |-
SnapshotName is the name of the snapshot from which to restore data into
the cluster.
Optional, Redis only
type: string
snapshotRetentionLimit:
description: |-
SnapshotRetentionLimit is the number of days for which ElastiCache will
retain automatic cache cluster snapshots before deleting them.
Optional, Redis only
format: int64
type: integer
snapshotWindow:
description: |-
SnapshotWindow is the daily time range (in UTC) during which ElastiCache
will begin taking a daily snapshot of the cache cluster.
Optional, Redis only
type: string
subnetGroupName:
description: |-
SubnetGroupName is the name of the subnet group to associate with this
cluster.
Required unless replication group is specified in which case it will be
ignored.
type: string
tags:
additionalProperties:
type: string
description: Tags is a list of key-value pairs to associate
with the cluster.
maxProperties: 50
type: object
transitEncryptionEnabled:
description: |-
TransitEncryptionEnabled specifies whether data in the cluster is
encrypted in transit.
Optional, Memcached only
type: boolean
required:
- engine
type: object
type: array
clusterModeEnabled:
description: |-
ClusterModeEnabled specifies whether cluster mode is enabled for the
replication group.
type: boolean
createReplicationGroup:
description: |-
CreateReplicationGroup specifies whether a replication group should be
created.
If set false, the replication group configuration will be used for
creating a single cluster
type: boolean
dataTieringEnabled:
description: |-
DataTieringEnabled specifies whether data tiering is enabled for the
replication group.
Must be true if the replcation group is using r6gd nodes
type: boolean
enableAuthToken:
description: |-
EnableAuthToken specifies whether an auth token should be enabled for the
replication group.
type: boolean
engine:
description: |-
Engine is the name of the cache engine to be used for the clusters in
this group.
enum:
- memcached
- redis
type: string
engineVersion:
description: |-
EngineVersion is the version number of the cache engine to be used for
the cluster. If not set this will default to the latest version.
This value will be ignored once the cluster is created.
type: string
finalSnapshotIdentifier:
description: |-
FinalSnapshotIdentifier is the user-supplied name for the final snapshot
that is created immediately before the cluster is deleted.
type: string
globalReplicationGroup:
description: GlobalReplicationGroup is the global replication
group configuration.
properties:
automaticFailoverEnabled:
description: |-
AutomaticFailoverEnabled specifies whether a read replica will be
automatically promoted to the primary cluster if the existing primary
cluster fails.
type: boolean
cacheNodeType:
description: CacheNodeType is the instance class to use
for the cache nodes.
type: string
enabled:
description: Enabled is a flag that enables the global
replication group.
type: boolean
engineVersion:
description: |-
EngineVersion is the version number of the cache engine to be used for
the cluster. If not set this will default to the latest version.
type: string
numNodeGroups:
description: NumNodeGroups is the number of node groups
in the replication group.
format: int64
type: integer
parameterGroupName:
description: |-
ParameterGroupName is the name of the parameter group to associate with
the global replication group.
Required when upgrading to a new major engine version but subsequently
ignored.
Specifying this parameter will result in an error if a major engine version
is not specified.
type: string
suffix:
description: |-
GlobalReplicationGroupIdSuffix is the suffix to append to the global
replication group id.
type: string
type: object
globalReplicationGroupId:
description: |-
GlobalReplicationGroupId is the id of the global replication group to
which this replication group should belong.
If this value is specified, the number of node groups parameter must not
be specified.
type: string
ipDiscovery:
description: IpDiscovery is the method used to discover cluster
nodes.
enum:
- ipv4
- ipv6
type: string
kmsKeyId:
description: |-
KmsKeyId is the ID of the AWS Key Management Service (KMS) key used to
encrypt the data in the cluster.
Ignored unless AtRestEncryptionEnabled is set to true.
type: string
kubernetesProviderConfig:
description: |-
Provider configuration for the kubernetes provider
This is required for creating users for redis clusters.
If Redis is the engine type, this must be provided and
external-secrets-operator must be installed.
properties:
name:
description: Name of the referenced object.
type: string
policy:
description: Policies for referencing.
properties:
resolution:
default: Required
description: |-
Resolution specifies whether resolution of this reference is required.
The default is 'Required', which means the reconcile will fail if the
reference cannot be resolved. 'Optional' means this reference will be
a no-op if it cannot be resolved.
enum:
- Required
- Optional
type: string
resolve:
description: |-
Resolve specifies when this reference should be resolved. The default
is 'IfNotPresent', which will attempt to resolve the reference only when
the corresponding field is not present. Use 'Always' to resolve the
reference on every reconcile.
enum:
- Always
- IfNotPresent
type: string
type: object
required:
- name
type: object
logDeliveryConfigurations:
description: |-
LogDeliveryConfiguration is a list of log delivery configurations for
the cluster.
This is only applicable when the Engine parameter is redis.
items:
properties:
destination:
description: Destination Name of the cloudwatch log
group or for kinesis firehose resource.
type: string
destinationType:
description: DestinationType The destination type for
the logs.
enum:
- cloudwatch-logs
- kinesis-firehose
type: string
logFormat:
description: LogFormat The log format to use.
enum:
- text
- json
type: string
logType:
description: LogType The type of log to deliver.
enum:
- slow-log
- engine-log
type: string
required:
- destination
- destinationType
- logType
type: object
type: array
maintenanceWindow:
description: |-
MaintenanceWindow specifies the weekly time range during which system
maintenance can occur.
type: string
multiAzEnabled:
description: |-
MultiAzEnabled specifies whether the cluster should be created in
multiple Availability Zones.
If true, AutomaticFailoverEnabled must also be true.
type: boolean
networkType:
description: NetworkType specifies the network configuration
for the cluster.
enum:
- ipv4
- ipv6
- dual_stack
type: string
nodeType:
description: |-
NodeType is the instance class to use for the cache nodes.
Requried unless global replication group is specified.
type: string
notificationTopicArn:
description: |-
NotificationTopicArn is the Amazon Resource Name (ARN) of the Amazon SNS
topic to which notifications will be sent.
type: string
numCacheClusters:
description: |-
NumCacheClusters is the number of cache clusters in the replication group.
If MultiAzEnabled is true, this value must be at least 2 but generally
should be equal to the number of Availability Zones.
Conflicts with NumNodeGroups.
format: int64
type: integer
numCacheNodes:
description: |-
NumCacheNodes is the number of cache nodes in the cluster.
Ignored if replication group is specified or being created
This is a convenience parameter when building a single cluster.
format: int64
type: integer
numNodeGroups:
description: |-
NumNodeGroups is the number of node groups in the replication group.
If GlobalReplicationGroupId is specified or GlobalReplicationGroup.Enabled
is true, this value must not be specified.
Conflicts with NumCacheClusters.
format: int64
type: integer
parameterGroupConfiguration:
description: |-
ParameterGroupConfiguration defines the configuration for the parameter
group.
properties:
description:
description: Description is a description of the parameter
group.
type: string
family:
description: |-
Family is the name of the parameter group family that this parameter
group is compatible with.
type: string
name:
description: Name is the name of the parameter group.
type: string
parameters:
additionalProperties:
type: string
description: Parameters is a list of parameters in the
parameter group.
type: object
tags:
additionalProperties:
type: string
description: Tags is a list of key-value pairs to associate
with the parameter group.
maxProperties: 50
type: object
required:
- family
- name
type: object
parameterGroupName:
description: |-
ParameterGroupName is the name of the parameter group to associate with
this cluster. To create a new parameter group, use the
`ParameterGroupConfiguration` option instead.
type: string
port:
description: |-
Port is the port number on which each of the cache nodes will accept
connections.
format: int64
type: integer
preferredCacheClusterAzs:
description: |-
PreferredCacheClusterAzs is a list ec2 availability zones in which the
cache clusters will be created.
items:
type: string
type: array
replicasPerNodeGroup:
description: ReplicasPerNodeGroup is the number of read replicas
per node group.
format: int64
maximum: 5
minimum: 0
type: integer
securityGroupIds:
description: |-
SecurityGroupIds is a list of security group IDs to associate with the
cluster.
items:
type: string
type: array
snapshotArns:
description: |-
SnapshotArns is a list of Amazon Resource Names (ARNs) of the snapshots
from which to restore data into the cluster.
Optional, Redis only
items:
type: string
type: array
snapshotName:
description: |-
SnapshotName is the name of the snapshot from which to restore data into
the cluster.
Optional, Redis only
type: string
snapshotRetentionLimit:
description: |-
SnapshotRetentionLimit is the number of days for which ElastiCache will
retain automatic cache cluster snapshots before deleting them.
Optional, Redis only
format: int64
type: integer
snapshotWindow:
description: |-
SnapshotWindow is the daily time range (in UTC) during which ElastiCache
will begin taking a daily snapshot of the cache cluster.
Optional, Redis only
type: string
tags:
additionalProperties:
type: string
description: Tags is a list of key-value pairs to associate
with the cluster.
maxProperties: 50
type: object
transitEncryptionEnabled:
description: |-
TransitEncryptionEnabled specifies whether data in the cluster is
encrypted in transit.
Optional, Memcached only
type: boolean
usernames:
description: Usernames is a list of users to associate with
the cluster.
items:
type: string
type: array
type: object
database:
description: Database defines the database settings
properties:
activityStream:
description: ActivityStream is the activity stream configuration.
properties:
enabled:
description: Enabled is whether activity stream is enabled.
type: boolean
engineNativeAuditFieldsIncluded:
description: |-
EngineNativeAuditFieldsIncluded is whether engine native audit fields are
included. This option only applies to Oracle databases.
type: boolean
mode:
description: Mode is the mode of the activity stream.
Valid values are `sync` and `async`.
enum:
- sync
- async
type: string
type: object
allocatedStorage:
description: AllocatedStorage is the size of the database.
format: int64
type: integer
allowMajorVersionUpgrade:
description: AllowMajorVersionUpgrade is whether major version
upgrades are allowed.
type: boolean
applyImmediately:
description: ApplyImmediately is whether changes should be
applied immediately.
type: boolean
autoMinorVersionUpgrade:
description: |-
AutoMinorVersionUpgrade is whether minor version upgrades are applied
automatically. This value can be overridden on a per instance basis.
type: boolean
autoscaling:
description: Autoscaling is the autoscaling configuration.