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.76k stars 9.11k forks source link

[New Resource]: `aws_ec2_managed_prefix_list_entries_exclusive` #39446

Open jar-b opened 1 day ago

jar-b commented 1 day ago

Description

Manage entries assigned to an EC2 managed prefix list. Related resources:

aws_ec2_managed_prefix_list aws_ec2_managed_prefix_list_entry

Deprecate aws_ec2_managed_prefix_list.entry.

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

Potential Terraform Configuration

resource "aws_ec2_managed_prefix_list_entries_exclusive" "example" {
  prefix_list_id = aws_ec2_managed_prefix_list.example.id
  cidrs = [
    aws_ec2_managed_prefix_list_entry.example1.cidr,
    aws_ec2_managed_prefix_list_entry.example2.cidr,
  ]
}

References

Would you like to implement a fix?

None

github-actions[bot] commented 1 day ago

Community Note

Voting for Prioritization

Volunteering to Work on This Issue