使用Fn :: Select在Cloudformation堆栈中创建输出

时间:2018-10-30 10:19:10

标签: amazon-cloudformation

是否可以像这样创建一个堆栈的输出:

TargetGroupARN1Part:
 Description: the final portion of the target group ARN
 Value:
  Fn::Select:
  - 5
  - Fn::Split:
    - ":"
    - !Ref WebTG

尝试时会得到:

Template format error: Invalid outputs property : [Fn::Select]

merci A

1 个答案:

答案 0 :(得分:0)

这应该可以正常工作,因为它可以在我的测试中正常工作。

您也可以尝试使用简短格式,例如:

TargetGroupARN1Part:
   Description: the final portion of the target group ARN
   Value: !Select [5, !Split [':', !Ref WebTG]]