/* Copyright © 2025 ESO Maintainer Team Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ package common import ( // nolint . "github.com/onsi/ginkgo/v2" . "github.com/onsi/gomega" corev1 "k8s.io/api/core/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "github.com/external-secrets/external-secrets-e2e/framework" esv1 "github.com/external-secrets/external-secrets/apis/externalsecrets/v1" esmetav1 "github.com/external-secrets/external-secrets/apis/meta/v1" ) const ( WithReferencedIRSA = "with referenced IRSA" WithMountedIRSA = "with mounted IRSA" StaticCredentialsSecretName = "provider-secret" StaticReferentCredentialsSecretName = "referent-provider-secret" IAMRoleExternalID = "arn:aws:iam::783882199045:role/eso-e2e-external-id" IAMRoleSessionTags = "arn:aws:iam::783882199045:role/eso-e2e-session-tags" IAMTrustedExternalID = "eso-e2e-ext-id" ) func ReferencedIRSAStoreName(f *framework.Framework) string { return "irsa-ref-" + f.Namespace.Name } func MountedIRSAStoreName(f *framework.Framework) string { return "irsa-mounted-" + f.Namespace.Name } func UseClusterSecretStore(tc *framework.TestCase) { tc.ExternalSecret.Spec.SecretStoreRef.Kind = esv1.ClusterSecretStoreKind tc.ExternalSecret.Spec.SecretStoreRef.Name = ReferencedIRSAStoreName(tc.Framework) } func UseMountedIRSAStore(tc *framework.TestCase) { tc.ExternalSecret.Spec.SecretStoreRef.Kind = esv1.SecretStoreKind tc.ExternalSecret.Spec.SecretStoreRef.Name = MountedIRSAStoreName(tc.Framework) } const ( StaticStoreName = "aws-static-creds" ExternalIDStoreName = "aws-ext-id" SessionTagsStoreName = "aws-sess-tags" staticKeyID = "kid" staticSecretAccessKey = "sak" staticySessionToken = "st" ) func newStaticStoreProvider(serviceType esv1.AWSServiceType, region, secretName, role, externalID string, sessionTags []*esv1.Tag) *esv1.SecretStoreProvider { return &esv1.SecretStoreProvider{ AWS: &esv1.AWSProvider{ Service: serviceType, Region: region, Role: role, ExternalID: externalID, SessionTags: sessionTags, Auth: esv1.AWSAuth{ SecretRef: &esv1.AWSAuthSecretRef{ AccessKeyID: esmetav1.SecretKeySelector{ Name: secretName, Key: staticKeyID, }, SecretAccessKey: esmetav1.SecretKeySelector{ Name: secretName, Key: staticSecretAccessKey, }, SessionToken: &esmetav1.SecretKeySelector{ Name: secretName, Key: staticySessionToken, }, }, }, }, } } type AccessOpts struct { KID string SAK string ST string Region string Role string } // SetupSessionTagsStore is namespaced and references // static credentials from a secret. It assumes a Role and specifies session tags func SetupSessionTagsStore(f *framework.Framework, access AccessOpts, sessionTags []*esv1.Tag, serviceType esv1.AWSServiceType) { credsName := "provider-secret-sess-tags" awsCreds := &corev1.Secret{ ObjectMeta: metav1.ObjectMeta{ Name: credsName, Namespace: f.Namespace.Name, }, StringData: map[string]string{ staticKeyID: access.KID, staticSecretAccessKey: access.SAK, staticySessionToken: access.ST, }, } err := f.CRClient.Create(GinkgoT().Context(), awsCreds) Expect(err).ToNot(HaveOccurred()) secretStore := &esv1.SecretStore{ ObjectMeta: metav1.ObjectMeta{ Name: SessionTagsStoreName, Namespace: f.Namespace.Name, }, Spec: esv1.SecretStoreSpec{ Provider: newStaticStoreProvider(serviceType, access.Region, credsName, access.Role, "", sessionTags), }, } err = f.CRClient.Create(GinkgoT().Context(), secretStore) Expect(err).ToNot(HaveOccurred()) } // SetupExternalIDStore is namespaced and references // static credentials from a secret. It assumes a role and specifies an externalID func SetupExternalIDStore(f *framework.Framework, access AccessOpts, externalID string, sessionTags []*esv1.Tag, serviceType esv1.AWSServiceType) { credsName := "provider-secret-ext-id" awsCreds := &corev1.Secret{ ObjectMeta: metav1.ObjectMeta{ Name: credsName, Namespace: f.Namespace.Name, }, StringData: map[string]string{ staticKeyID: access.KID, staticSecretAccessKey: access.SAK, staticySessionToken: access.ST, }, } err := f.CRClient.Create(GinkgoT().Context(), awsCreds) Expect(err).ToNot(HaveOccurred()) secretStore := &esv1.SecretStore{ ObjectMeta: metav1.ObjectMeta{ Name: ExternalIDStoreName, Namespace: f.Namespace.Name, }, Spec: esv1.SecretStoreSpec{ Provider: newStaticStoreProvider(serviceType, access.Region, credsName, access.Role, externalID, sessionTags), }, } err = f.CRClient.Create(GinkgoT().Context(), secretStore) Expect(err).ToNot(HaveOccurred()) } // SetupStaticStore is namespaced and references // static credentials from a secret. func SetupStaticStore(f *framework.Framework, access AccessOpts, serviceType esv1.AWSServiceType) { awsCreds := &corev1.Secret{ ObjectMeta: metav1.ObjectMeta{ Name: StaticCredentialsSecretName, Namespace: f.Namespace.Name, }, StringData: map[string]string{ staticKeyID: access.KID, staticSecretAccessKey: access.SAK, staticySessionToken: access.ST, }, } err := f.CRClient.Create(GinkgoT().Context(), awsCreds) Expect(err).ToNot(HaveOccurred()) secretStore := &esv1.SecretStore{ ObjectMeta: metav1.ObjectMeta{ Name: StaticStoreName, Namespace: f.Namespace.Name, }, Spec: esv1.SecretStoreSpec{ Provider: newStaticStoreProvider(serviceType, access.Region, StaticCredentialsSecretName, "", "", nil), }, } err = f.CRClient.Create(GinkgoT().Context(), secretStore) Expect(err).ToNot(HaveOccurred()) } // CreateReferentStaticStore creates a CSS with referent auth and // creates a secret with static authentication credentials in the ExternalSecret namespace. func CreateReferentStaticStore(f *framework.Framework, access AccessOpts, serviceType esv1.AWSServiceType) { ns := f.Namespace.Name awsCreds := &corev1.Secret{ ObjectMeta: metav1.ObjectMeta{ Name: StaticReferentCredentialsSecretName, Namespace: ns, }, StringData: map[string]string{ staticKeyID: access.KID, staticSecretAccessKey: access.SAK, staticySessionToken: access.ST, }, } err := f.CRClient.Create(GinkgoT().Context(), awsCreds) Expect(err).ToNot(HaveOccurred()) secretStore := &esv1.ClusterSecretStore{ ObjectMeta: metav1.ObjectMeta{ Name: ReferentSecretStoreName(f), }, Spec: esv1.SecretStoreSpec{ Provider: newStaticStoreProvider(serviceType, access.Region, StaticReferentCredentialsSecretName, "", "", nil), }, } err = f.CRClient.Create(GinkgoT().Context(), secretStore) Expect(err).ToNot(HaveOccurred()) } func ReferentSecretStoreName(f *framework.Framework) string { return "referent-auth" + f.Namespace.Name }