You must be logged in to view saved presets
This template enables the IPAM service and sets up a delegated administrator for AWS VPC IPAM using Terraform.
data "aws_caller_identity" "delegated" {
provider = "aws.ipam_delegate_account"
}
resource "aws_vpc_ipam_organization_admin_account" "example" {
delegated_admin_account_id = data.aws_caller_identity.delegated.account_id
}