shalupov / idea-cloudformation

AWS CloudFormation plugin for IntelliJ-based IDEs (IntelliJ IDEA, RubyMine, WebStorm, PhpStorm, PyCharm, AppCode, Android Studio, DataGrip, CLion)
https://teamcity.jetbrains.com/viewType.html?buildTypeId=IdeaAwsCloudFormation_Master_Build&guest=1
Apache License 2.0
136 stars 27 forks source link

Type Tags in YAML Support #156

Open wangchunyang opened 5 years ago

wangchunyang commented 5 years ago

YAML has tags, which can be used to explicitly declare types, for instance:

            "DeleteOnTermination": !!bool "true"
            "VolumeSize": !!int "120"

Currently the plugin shows error for them - "Unknown CloudFormation function: int" or "Unknown CloudFormation function: bool".