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

No autocomplete of nested properties in IntelliJ 2019.1 #154

Open moodysalem opened 5 years ago

moodysalem commented 5 years ago

I have an IntelliJ 2019.1 setup on linux and not seeing any autocomplete with the plugin installed

moodysalem commented 5 years ago

The autocomplete seems to be limited in depth, e.g. I can autocomplete the Type of a resource and property names, but when there is no autocomplete for nested property values

{
  "AWSTemplateFormatVersion": "2010-09-09",
  "Resources": {
    "MyResource": {
      "Type": "AWS::S3::Bucket",
      "Properties": {
        "BucketEncryption": {
        }
      }
    }
  }
}

https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-bucketencryption.html