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.82k stars 9.16k forks source link

[New Service]: AWS Support App #39884

Open shmokmt opened 2 days ago

shmokmt commented 2 days ago

Description

I would be happy if Terraform supports AWS Support App. CloudFormation already seems to support this. ref. https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/AWS_SupportApp.html

Requested Resource(s) and/or Data Source(s)

Potential Terraform Configuration

resource "aws_supportapp_account_alias" "alias" {
  account_alias = "xxxx"
}

resource "aws_supportapp_slack_channel_configuration" "slack_channel" {
  channel_id = "xxxx"
  channel_name = "xxxx" 
  channel_role_arn = "xxxx"
  notify_on_add_correspondence_to_case = true
  notify_on_case_severity = all
  notify_on_create_or_reopen_case = true
  notify_on_resolve_case = true
  team_id = "xxxx"
}

resource "aws_supportapp_slack_workspace_configuration" "workspace" {
  team_id = "xxxx"
}

References

Would you like to implement a fix?

Yes

github-actions[bot] commented 2 days ago

Community Note

Voting for Prioritization

Volunteering to Work on This Issue