Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[New]: Support for Well Architected Tool resources #29755

Open
rudolphjacksonm opened this issue Mar 2, 2023 · 1 comment
Open

[New]: Support for Well Architected Tool resources #29755

rudolphjacksonm opened this issue Mar 2, 2023 · 1 comment
Labels
new-resource Introduces a new resource. service/wellarchitected Issues and PRs that pertain to the wellarchitected service.

Comments

@rudolphjacksonm
Copy link

rudolphjacksonm commented Mar 2, 2023

Description

Hi all,

It would be great if the AWS provider could support the creation of Well Architected Tool resources like workloads, lenses, and potentially milestones. I've checked the collaboration guidelines and can see the service is supported and listed under names/names_data.csv, which is a good start.

To keep this feature request simple, for now I would like to request managing workloads via Terraform, since these are the first things you create whenever performing a Well-Architected Review using the tool. Custom lenses would be a nice follow-up.

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

  • aws_wellarchitected_workload

Potential Terraform Configuration

resource "aws_wellarchitected_workload" "this" {
  account_ids = [
    "123456789012",
    "123456789011",
  ]
  architectural_design = var.architectural_design
  aws_regions = [
    "eu-west-1",
    "eu-west-2",
  ]
  description  = var.description
  environment  = var.environment
  industry     = var.industry
  industryType = var.industry_type
  lenses = [
    "wellarchitected",
    "serverless"
  ]
  pillar_priorities = [
    "operationalExcellence",
    "performance",
    "security",
    "reliability",
    "costOptimization",
    "sustainability",
  ]
  review_owner  = var.review_owner
  workload_name = var.workload_name
}

data "aws_wellarchitected_workload" "this" {
  workload_id = aws_wellarchitected_workload.this.id
}

References

AWS CLI documentation for create-workload: https://docs.aws.amazon.com/cli/latest/reference/wellarchitected/create-workload.html

AWS CLI documentation for get-workload, which I presume would be the same API used for the Terraform data source: https://docs.aws.amazon.com/cli/latest/reference/wellarchitected/get-workload.html

Would you like to implement a fix?

None

@rudolphjacksonm rudolphjacksonm added the needs-triage Waiting for first response or review from a maintainer. label Mar 2, 2023
@github-actions github-actions bot added the service/wellarchitected Issues and PRs that pertain to the wellarchitected service. label Mar 2, 2023
@github-actions
Copy link

github-actions bot commented Mar 2, 2023

Community Note

Voting for Prioritization

  • Please vote on this issue by adding a 👍 reaction to the original post to help the community and maintainers prioritize this request.
  • Please see our prioritization guide for information on how we prioritize.
  • Please do not leave "+1" or other comments that do not add relevant new information or questions, they generate extra noise for issue followers and do not help prioritize the request.

Volunteering to Work on This Issue

  • If you are interested in working on this issue, please leave a comment.
  • If this would be your first contribution, please review the contribution guide.

@justinretzolk justinretzolk added new-resource Introduces a new resource. and removed needs-triage Waiting for first response or review from a maintainer. labels Mar 14, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
new-resource Introduces a new resource. service/wellarchitected Issues and PRs that pertain to the wellarchitected service.
Projects
None yet
Development

No branches or pull requests

2 participants