From 68d75144d85b251f8db2b4447c169de78ce3b464 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Mon, 29 Jul 2019 13:01:41 -0700 Subject: [PATCH] pkg/asset/machines/aws/machines: Request encrypted EBS volumes This should allow us to get encrypted compute machines even without the AWS cluster-API provider supporting copy-and-encrypt for RHCOS AMIs. --- pkg/asset/machines/aws/machines.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/asset/machines/aws/machines.go b/pkg/asset/machines/aws/machines.go index e0874d06520..04bbf6e8dfb 100644 --- a/pkg/asset/machines/aws/machines.go +++ b/pkg/asset/machines/aws/machines.go @@ -87,6 +87,7 @@ func provider(clusterID string, platform *aws.Platform, mpool *aws.MachinePool, VolumeType: pointer.StringPtr(mpool.Type), VolumeSize: pointer.Int64Ptr(int64(mpool.Size)), Iops: pointer.Int64Ptr(int64(mpool.IOPS)), + Encrypted: pointer.BoolPtr(true), }, }, },