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

Support EnableHttpEndpoint for aws_rds_cluster #10026

Closed
dave-lew99 opened this issue Sep 6, 2019 · 2 comments · Fixed by #11048
Closed

Support EnableHttpEndpoint for aws_rds_cluster #10026

dave-lew99 opened this issue Sep 6, 2019 · 2 comments · Fixed by #11048
Labels
enhancement Requests to existing resources that expand the functionality or scope. service/rds Issues and PRs that pertain to the rds service.

Comments

@dave-lew99
Copy link

Community Note

  • Please vote on this issue by adding a 👍 reaction to the original issue to help the community and maintainers prioritize this request
  • Please do not leave "+1" or "me too" comments, they generate extra noise for issue followers and do not help prioritize the request
  • If you are interested in working on this issue or have submitted a pull request, please leave a comment

Description

RDS clusters for Aurora Serverless support the EnableHttpEndpoint option (equivalent to the --enable-http-endpoint CLI command)

New or Affected Resource(s)

aws_rds_cluster

Potential Terraform Configuration

resource "aws_rds_cluster" "default" {
  cluster_identifier      = "NewCluster"
  vpc_security_group_ids  = ["${aws_security_group.security_group.id}"]
  db_subnet_group_name    = "${aws_db_subnet_group.default.name}"
  engine_mode             = "serverless"
  master_username         = "master"
  master_password         = "abc123"
  backup_retention_period = 7
  skip_final_snapshot     = false
  enable_http_api         = true

  scaling_configuration {
    auto_pause               = true
    max_capacity             = 32
    min_capacity             = 2
    seconds_until_auto_pause = 300
  }

}

References

https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_CreateDBCluster.html

  • #0000
@dave-lew99 dave-lew99 added the enhancement Requests to existing resources that expand the functionality or scope. label Sep 6, 2019
@ghost ghost added the service/rds Issues and PRs that pertain to the rds service. label Sep 6, 2019
@github-actions github-actions bot added the needs-triage Waiting for first response or review from a maintainer. label Sep 6, 2019
@SamCullin
Copy link

Ye I am trying to directly integrate APIGateway with RDS and I need the http endpoint in order to do this.

@ghost
Copy link

ghost commented Mar 27, 2020

I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues.

If you feel this issue should be reopened, we encourage creating a new issue linking back to this one for added context. Thanks!

@ghost ghost locked and limited conversation to collaborators Mar 27, 2020
@breathingdust breathingdust removed the needs-triage Waiting for first response or review from a maintainer. label Sep 17, 2021
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
enhancement Requests to existing resources that expand the functionality or scope. service/rds Issues and PRs that pertain to the rds service.
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants