适用于在 yaml 文件中查找键值的正则表达式
Suitable Regex for finding value to a key in yaml file
我想确保我使用的是 aescbc 作为提供商。
kind: EncryptionConfig
apiVersion: v1
resources:
- resources:
- secrets
providers:
- aescbc:
keys:
- name: key1
我猜,
\bproviders:\s*-\s*\baescbc:
在 s
模式下可能就足够了。
如果您希望 simplify/modify/explore 表达式,regex101.com. If you'd like, you can also watch in this link 的右上面板已对其进行说明,它将如何匹配一些示例输入。
我想确保我使用的是 aescbc 作为提供商。
kind: EncryptionConfig
apiVersion: v1
resources:
- resources:
- secrets
providers:
- aescbc:
keys:
- name: key1
我猜,
\bproviders:\s*-\s*\baescbc:
在 s
模式下可能就足够了。
如果您希望 simplify/modify/explore 表达式,regex101.com. If you'd like, you can also watch in this link 的右上面板已对其进行说明,它将如何匹配一些示例输入。