| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- /*
- Copyright © The ESO Authors
- 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 aws
- import (
- "fmt"
- v1 "k8s.io/api/core/v1"
- "github.com/external-secrets/external-secrets-e2e/framework"
- esapi "github.com/external-secrets/external-secrets/apis/externalsecrets/v1"
- )
- // This case creates secret with specific tags which are checked by the assumed IAM policy
- func SimpleSyncWithNamespaceTags(prov *Provider) func(f *framework.Framework) (string, func(*framework.TestCase)) {
- return func(f *framework.Framework) (string, func(*framework.TestCase)) {
- return "[common] should sync tagged simple secrets from .Data[]", func(tc *framework.TestCase) {
- secretKey1 := fmt.Sprintf("%s-%s", f.Namespace.Name, "one")
- secretKey2 := fmt.Sprintf("%s-%s", f.Namespace.Name, "other")
- remoteRefKey1 := f.MakeRemoteRefKey(secretKey1)
- remoteRefKey2 := f.MakeRemoteRefKey(secretKey2)
- secretValue := "bar"
- tc.Secrets = map[string]framework.SecretEntry{
- // add specific tags to the secret resource. The assumed role only allows access to those
- remoteRefKey1: {Value: secretValue, Tags: map[string]string{"namespace": "e2e-test"}},
- remoteRefKey2: {Value: secretValue, Tags: map[string]string{"namespace": "e2e-test"}},
- }
- tc.ExpectedSecret = &v1.Secret{
- Type: v1.SecretTypeOpaque,
- Data: map[string][]byte{
- secretKey1: []byte(secretValue),
- secretKey2: []byte(secretValue),
- },
- }
- tc.ExternalSecret.Spec.Data = []esapi.ExternalSecretData{
- {
- SecretKey: secretKey1,
- RemoteRef: esapi.ExternalSecretDataRemoteRef{
- Key: remoteRefKey1,
- },
- },
- {
- SecretKey: secretKey2,
- RemoteRef: esapi.ExternalSecretDataRemoteRef{
- Key: remoteRefKey2,
- },
- },
- }
- }
- }
- }
|