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 Service]: Amazon Cloudwatch Network Monitor #35342

Closed
juhala-aws opened this issue Jan 17, 2024 · 9 comments · Fixed by #35722
Closed

[New Service]: Amazon Cloudwatch Network Monitor #35342

juhala-aws opened this issue Jan 17, 2024 · 9 comments · Fixed by #35722
Labels
new-service Introduces a new service.
Milestone

Comments

@juhala-aws
Copy link
Contributor

Description

AWS Cloudwatch Network Monitor helps one to monitor network availability and performance between AWS and your on-premises environment.

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

Resource: aws_networkmonitor_monitor
Resource: aws_networkmonitor_probe

Potential Terraform Configuration

resource "aws_vpc" "test" {
  cidr_block = "10.0.0.0/16"
}
	
resource "aws_subnet" "test" {
  vpc_id = aws_vpc.test.id
  cidr_block = cidrsubnet(aws_vpc.test.cidr_block, 8, 0)
}

resource "aws_networkmonitor_monitor" "test" {
  aggregation_period = 30
  monitor_name = "test"
}

resource "aws_networkmonitor_probe" "test" {
  monitor_name = aws_networkmonitor_monitor.test.monitor_name
  probe {
    destination = "192.168.0.1"
    destination_port = "80"
    protocol = "TCP"
    source_arn = aws_subnet.test.arn
    packet_size = 100
  }
}

References

API documentation: https://docs.aws.amazon.com/networkmonitor/latest/APIReference/Welcome.html

Would you like to implement a fix?

Yes

@github-actions github-actions bot added the service/vpc Issues and PRs that pertain to the vpc service. label Jan 17, 2024
Copy link

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.

@terraform-aws-provider terraform-aws-provider bot added the needs-triage Waiting for first response or review from a maintainer. label Jan 17, 2024
@justinretzolk justinretzolk added new-service Introduces a new service. and removed needs-triage Waiting for first response or review from a maintainer. service/vpc Issues and PRs that pertain to the vpc service. labels Jan 17, 2024
@major0
Copy link

major0 commented May 16, 2024

Any idea on the timeframe for getting this in? I saw that there was a pending PR, but it doesn't seem to have moved in a few month.

@PatrykPetryszen
Copy link

Is there any ETA for this?

@fmodarelli
Copy link

Hi team,
Is there any ETA for this?
We are really very interested in being able to implement this feature through Terraform.
Regards.

Copy link

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 github-actions bot added this to the v5.56.0 milestone Jun 24, 2024
Copy link

This functionality has been released in v5.56.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!

@adpriori
Copy link

When trying to create more than one probe at a time, I get the following error:

"waiting for CloudWatch Network Monitor Probe (Network_Monitor_Core,probe-xxxxxxxxxxxxxxx) create" tf_req_id=1exxxxxxxxxxxxxxxxxxxxxx diagnostic_detail="couldn't find resource (21 retries)"

Anyone else has happened? How could it be solved?

Copy link

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 have found a problem that seems similar to this, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further.

@github-actions github-actions bot locked as resolved and limited conversation to collaborators Aug 23, 2024
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
new-service Introduces a new service.
Projects
None yet
Development

Successfully merging a pull request may close this issue.

7 participants