Преглед изворни кода

Add ReadWrite capability to AWS provider

Signed-off-by: Lilly Daniell <lilly.daniell@engineerbetter.com>
Lilly Daniell пре 3 година
родитељ
комит
e5103e5724
1 измењених фајлова са 1 додато и 1 уклоњено
  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.