Skip to content

Commit

Permalink
update example
Browse files Browse the repository at this point in the history
Signed-off-by: Steven Borrelli <steve@borrelli.org>
  • Loading branch information
stevendborrelli committed Feb 27, 2024
1 parent 602b357 commit f5dd435
Showing 1 changed file with 16 additions and 8 deletions.
24 changes: 16 additions & 8 deletions examples/memorydb/v1beta1/user.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,18 @@ metadata:
annotations:
meta.upbound.io/example-id: memorydb/v1beta1/user
labels:
testing.upbound.io/example-name: example
name: example
testing.upbound.io/example-name: memorydb-user
name: memorydb-user
spec:
forProvider:
accessString: "on ~* &* +@all"
authenticationMode:
- passwordsSecretRef:
- key: password
name: example-secret
name: memorydb-user-password-1
namespace: upbound-system
- key: password
name: memorydb-user-secret-2
name: memorydb-user-password-2
namespace: upbound-system
type: password
region: us-west-1
Expand All @@ -26,17 +26,25 @@ spec:
apiVersion: v1
kind: Secret
metadata:
name: example-secret
annotations:
meta.upbound.io/example-id: memorydb/v1beta1/user
labels:
testing.upbound.io/example-name: memorydb-user-password-1
name: memorydb-user-password-1
namespace: upbound-system
type: Opaque
stringData:
password: TestCr0ssplanePassw0rd! # Passwords must be a minimum of 16 characters
---
apiVersion: v1
kind: Secret
metadata:
name: memorydb-user-secret-2
metadata:
annotations:
meta.upbound.io/example-id: memorydb/v1beta1/user
labels:
testing.upbound.io/example-name: memorydb-user-password-2
name: memorydb-user-password-2
namespace: upbound-system
type: Opaque
stringData:
password: TestCr0ssplanePassw0rd! # Passwords must be a minimum of 16 characters
password: AnotherCr0ssplanePassw0rd! # Passwords must be a minimum of 16 characters

0 comments on commit f5dd435

Please sign in to comment.