File tree Expand file tree Collapse file tree 4 files changed +37
-0
lines changed
examples/elastic-ip-amazon Expand file tree Collapse file tree 4 files changed +37
-0
lines changed Original file line number Diff line number Diff line change 6
6
7
7
Terraform module which creates IPAM related resources (IPAM, Elastic IP, Prefix List) on AWS.
8
8
9
+ - [ elastic-ip] ( ./modules/elastic-ip )
9
10
- [ ipam] ( ./modules/ipam )
10
11
- [ ipam-resource-discovery] ( ./modules/ipam-resource-discovery )
11
12
- [ prefix-list] ( ./modules/prefix-list )
@@ -30,6 +31,7 @@ Terraform Modules from [this package](https://github.com/tedilabs/terraform-aws-
30
31
### VPC
31
32
32
33
- [ prefix-lists] ( ./examples/prefix-lists )
34
+ - [ elastic-ip-amazon] ( ./examples/elastic-ip-amazon/ )
33
35
34
36
35
37
## Self Promotion
Original file line number Diff line number Diff line change
1
+ provider "aws" {
2
+ region = " us-east-1"
3
+ }
4
+
5
+
6
+ # ##################################################
7
+ # Elastic IP
8
+ # ##################################################
9
+
10
+ module "eip" {
11
+ source = " ../../modules/elastic-ip"
12
+ # source = "tedilabs/ipam/aws//modules/elastic-ip"
13
+ # version = "~> 0.2.0"
14
+
15
+ name = " test-amazon"
16
+ type = " AMAZON"
17
+
18
+ tags = {
19
+ " project" = " terraform-aws-ipam-examples"
20
+ }
21
+ }
Original file line number Diff line number Diff line change
1
+ output "eip" {
2
+ description = " The Elastic IP."
3
+ value = module. eip
4
+ }
Original file line number Diff line number Diff line change
1
+ terraform {
2
+ required_version = " ~> 1.5"
3
+
4
+ required_providers {
5
+ aws = {
6
+ source = " hashicorp/aws"
7
+ version = " ~> 5.0"
8
+ }
9
+ }
10
+ }
You can’t perform that action at this time.
0 commit comments