Kubernetes - RBAC and Security
Given this encryption config snippet:
{
"kind": "EncryptionConfig",
"apiVersion": "v1",
"resources": [
{
"resources": ["secrets"],
"providers": [
{"aescbc": {"keys": [{"name": "key1", "secret": "c2VjcmV0MTIzNDU2Nzg5MDEyMw=="}]}},
{"identity": {}}
]
}
]
}What is the effect of this configuration?