Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: aws/eks-anywhere
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 00ac17012500871e1b27aefd3923d22ea84051c1
Choose a base ref
..
head repository: aws/eks-anywhere
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: f45a491ee7db6bce3c089fce3b65c9abf81c9b77
Choose a head ref
Showing with 3 additions and 1 deletion.
  1. +3 βˆ’1 pkg/api/v1alpha1/etcdencryption.go
4 changes: 3 additions & 1 deletion pkg/api/v1alpha1/etcdencryption.go
Original file line number Diff line number Diff line change
@@ -11,8 +11,10 @@ import (
)

var (
// DefaultKMSCacheSize is the default cache size for KMS provider (1000).
DefaultKMSCacheSize = ptr.Int32(1000)
DefaultKMSTimeout = metav1.Duration{Duration: time.Second * 3}
// DefaultKMSTimeout is the default timeout for KMS provider (3s).
DefaultKMSTimeout = metav1.Duration{Duration: time.Second * 3}
)

// ValidateEtcdEncryptionConfig validates the etcd encryption configuration.