Adding Comment

- before I forget why, just adding a link to the issue as to why this here
This commit is contained in:
Rohith 2019-02-21 12:28:13 +00:00
parent 1564a67461
commit 62d9078901
1 changed files with 1 additions and 1 deletions

View File

@ -183,7 +183,7 @@ func (t *LaunchTemplate) Find(c *fi.Context) (*LaunchTemplate, error) {
for _, x := range lt.LaunchTemplateData.NetworkInterfaces {
if aws.BoolValue(x.AssociatePublicIpAddress) {
actual.AssociatePublicIP = fi.Bool(true)
// @note: not sure i like this
// @note: not sure i like this https://github.com/hashicorp/terraform/issues/2998
for _, id := range x.Groups {
actual.SecurityGroups = append(actual.SecurityGroups, &SecurityGroup{ID: id})
}