hashicorp / terraform-provider-aws

The AWS Provider enables Terraform to manage AWS resources.
https://registry.terraform.io/providers/hashicorp/aws
Mozilla Public License 2.0
9.71k stars 9.08k forks source link

[Enhancement]: lexv2models/slot Needs `sub_slot_setting` #35514

Closed nam054 closed 3 weeks ago

nam054 commented 7 months ago

Terraform Core Version

1.6.6

AWS Provider Version

5.34.0

Affected Resource(s)

Expected Behavior

Needs sub_slot_setting attribute.

Actual Behavior

Resource does not have sub_slot_setting implemented yet. https://pkg.go.dev/github.com/aws/aws-sdk-go-v2/service/lexmodelsv2@v1.38.6/types#SubSlotSetting

Relevant Error/Panic Output Snippet

No response

Terraform Configuration Files

resource "aws_lexv2models_slot" "test" {
  bot_id      = aws_lexv2models_bot.test.id
  bot_version = aws_lexv2models_bot_locale.test.bot_version
  intent_id   = aws_lexv2models_intent.test.intent_id
  name        =  "test"
  locale_id   = aws_lexv2models_bot_locale.test.locale_id

  value_elicitation_setting {
    slot_constraint = "Optional"
    default_value_specification {
      default_value_list {
        default_value = "default"
      }
    }
  }

  sub_slot_setting {
    expression = "string"
    slot_specifications {
      slot_type_id = aws_lexv2models_slottype.id
      value_elicitation_setting {
        prompt_specification {
        }
        default_value_specification {
        }
        sample_utterances {
        }
        wait_and_continue_specification {
        }
      }
    }
  }
}

Steps to Reproduce

  1. terraform apply

Debug Output

No response

Panic Output

No response

Important Factoids

No response

References

Would you like to implement a fix?

None

github-actions[bot] commented 7 months ago

Community Note

Voting for Prioritization

Volunteering to Work on This Issue

github-actions[bot] commented 3 weeks ago

[!WARNING] This issue has been closed, meaning that any additional comments are hard for our team to see. Please assume that the maintainers will not see them.

Ongoing conversations amongst community members are welcome, however, the issue will be locked after 30 days. Moving conversations to another venue, such as the AWS Provider forum, is recommended. If you have additional concerns, please open a new issue, referencing this one where needed.

github-actions[bot] commented 3 weeks ago

This functionality has been released in v5.62.0 of the Terraform AWS Provider. Please see the Terraform documentation on provider versioning or reach out if you need any assistance upgrading.

For further feature requests or bug reports with this functionality, please create a new GitHub issue following the template. Thank you!