使用 yq v4 向 YAML 值添加格式

Add formatting to a YAML value with yq v4

我正在尝试使用 yq https://github.com/mikefarah/yq v4.3.2 在 CloudFormation 模板中添加一个 yaml 值,如下所示:

Mappings: 
  RegionMap: 
    us-east-1: 
      AMI: 'ami-YeahRight'

相反,我得到的是:

Mappings: 
  RegionMap: 
    us-east-1: 
      AMI: ami-YeahRight

文档中的样式位和这个 SO 答案 让我认为 bash 脚本的这一部分可以工作,但是样式部分被忽略了。

region="us-east-1"
ami="ami-YeahRight"
echo Inserting $ami into $region
yq eval '.Mappings.RegionMap.'"$region"'.AMI='"$ami"' style="single"' -i temp.yaml

我已经尝试了一大堆类似的位,但似乎无法解决这个问题。如有任何帮助,我们将不胜感激!

mikefaraq/yq 正在经历从 v4 开始的重大变化,对于中间发生的变化我并不感到惊讶。

在 v4.4 上我可以完成这项工作,但是using env() function to look-up the variables and use the ..style attribute 设置引用样式

region="us-east-1" ami="ami-YeahRight" yq e '.Mappings.RegionMap.[env(region)] = env(ami) | ..style="single"' yaml