Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
T
terraform-aws-ec2-instance
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Container Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Terraform Modules
terraform-aws-ec2-instance
Commits
fee41b74
Commit
fee41b74
authored
Mar 01, 2019
by
Peter Nduati
Committed by
Anton Babenko
Mar 01, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
network_interface_id Attribute Removal (#76)
parent
1962a4fd
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
6 deletions
+0
-6
outputs.tf
outputs.tf
+0
-6
No files found.
outputs.tf
View file @
fee41b74
...
...
@@ -4,7 +4,6 @@ locals {
this_key_name
=
"
${
compact
(
concat
(
coalescelist
(
aws_instance
.
this
.
*
.
key_name
,
aws_instance
.
this_t2
.
*
.
key_name
),
list
(
""
)))
}
"
this_public_dns
=
"
${
compact
(
concat
(
coalescelist
(
aws_instance
.
this
.
*
.
public_dns
,
aws_instance
.
this_t2
.
*
.
public_dns
),
list
(
""
)))
}
"
this_public_ip
=
"
${
compact
(
concat
(
coalescelist
(
aws_instance
.
this
.
*
.
public_ip
,
aws_instance
.
this_t2
.
*
.
public_ip
),
list
(
""
)))
}
"
this_network_interface_id
=
"
${
compact
(
concat
(
coalescelist
(
aws_instance
.
this
.
*
.
network_interface_id
,
aws_instance
.
this_t2
.
*
.
network_interface_id
),
list
(
""
)))
}
"
this_primary_network_interface_id
=
"
${
compact
(
concat
(
coalescelist
(
aws_instance
.
this
.
*
.
primary_network_interface_id
,
aws_instance
.
this_t2
.
*
.
primary_network_interface_id
),
list
(
""
)))
}
"
this_private_dns
=
"
${
compact
(
concat
(
coalescelist
(
aws_instance
.
this
.
*
.
private_dns
,
aws_instance
.
this_t2
.
*
.
private_dns
),
list
(
""
)))
}
"
this_private_ip
=
"
${
compact
(
concat
(
coalescelist
(
aws_instance
.
this
.
*
.
private_ip
,
aws_instance
.
this_t2
.
*
.
private_ip
),
list
(
""
)))
}
"
...
...
@@ -46,11 +45,6 @@ output "public_ip" {
value
=
[
"
${
local
.
this_public_ip
}
"
]
}
output
"network_interface_id"
{
description
=
"List of IDs of the network interface of instances"
value
=
[
"
${
local
.
this_network_interface_id
}
"
]
}
output
"primary_network_interface_id"
{
description
=
"List of IDs of the primary network interface of instances"
value
=
[
"
${
local
.
this_primary_network_interface_id
}
"
]
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment