ROS可以通过使用AssociationProperty中的AutoCompleteInput自动生成随机字符串。
您可以在模板Parameters的RandomName参数中,设置AssociationProperty为AutoCompleteInput,然后同时设置AssociationPropertyMetadata中的Length、Prefix和CharacterClasses属性,从而控制随机字符串的长度。更多信息,请参见AssociationProperty和AssociationPropertyMetadata。
{
"ROSTemplateFormatVersion": "2015-09-01",
"Parameters": {
"RandomName": {
"Type": "String",
"Label": {
"en": "Random Name",
"zh-cn": "随机名称"
},
"AssociationProperty": "AutoCompleteInput",
"AssociationPropertyMetadata": {
"Length": 5 ,
"Prefix": "test-ros",
"CharacterClasses": [
{
"Class": "lowercase",
"min": 1
}
]
}
}
},
"Outputs": {
"RandomNameStr": {
"Value": {
"Ref": "RandomName"
}
}
}
}