Procházet zdrojové kódy

Add ReadWrite capability to AWS provider

Signed-off-by: Lilly Daniell <lilly.daniell@engineerbetter.com>
Lilly Daniell před 4 roky
rodič
revize
e5103e5724
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      pkg/provider/aws/provider.go

+ 1 - 1
pkg/provider/aws/provider.go

@@ -48,7 +48,7 @@ const (
 
 
 // Capabilities return the provider supported capabilities (ReadOnly, WriteOnly, ReadWrite).
 // Capabilities return the provider supported capabilities (ReadOnly, WriteOnly, ReadWrite).
 func (p *Provider) Capabilities() esv1beta1.SecretStoreCapabilities {
 func (p *Provider) Capabilities() esv1beta1.SecretStoreCapabilities {
-	return esv1beta1.SecretStoreReadOnly
+	return esv1beta1.SecretStoreReadWrite
 }
 }
 
 
 // NewClient constructs a new secrets client based on the provided store.
 // NewClient constructs a new secrets client based on the provided store.