-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CXF-83186 Integrating AWS cloud provider with fabric examples (#24)
* CXF-83186 Integrating AWS cloud provider with fabric examples * CXF-83184 Updating provider version and renaming example folder
- Loading branch information
1 parent
be33e58
commit 8339eb2
Showing
15 changed files
with
309 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,13 @@ | ||
output "module_output" { | ||
value = module.cloud_router_aws_connection.primary_connection_id | ||
} | ||
output "aws_vpc_id" { | ||
value = aws_vpc.example.id | ||
} | ||
output "aws_vpn_gateway_id" { | ||
value = aws_vpn_gateway.example.id | ||
} | ||
output "aws_interface_id" { | ||
value = aws_dx_private_virtual_interface.example.id | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,12 @@ | ||
output "aws_connection_id" { | ||
value = module.create_port_2_aws_connection.primary_connection_id | ||
value = module.port_2_aws_connection.primary_connection_id | ||
} | ||
output "aws_vpc_id" { | ||
value = aws_vpc.example.id | ||
} | ||
output "aws_vpn_gateway_id" { | ||
value = aws_vpn_gateway.example.id | ||
} | ||
output "aws_interface_id" { | ||
value = aws_dx_private_virtual_interface.example.id | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 9 additions & 1 deletion
10
examples/service-token-metal-2-fabric-aws-connection/outputs.tf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,15 @@ | ||
output "metal-connection" { | ||
value = equinix_metal_connection.metal-connection.id | ||
} | ||
|
||
output "fabric-connection" { | ||
value = module.metal-2-fabric-connection.primary_connection_id | ||
} | ||
output "aws_vpc_id" { | ||
value = aws_vpc.example.id | ||
} | ||
output "aws_vpn_gateway_id" { | ||
value = aws_vpn_gateway.example.id | ||
} | ||
output "aws_interface_id" { | ||
value = aws_dx_private_virtual_interface.example.id | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.