Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
T
terraform-aws-vpc
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-vpc
Commits
4e484aa7
Commit
4e484aa7
authored
Dec 27, 2018
by
Anton Babenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added azs to outputs which is an argument
parent
44bb5899
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
12 additions
and
0 deletions
+12
-0
README.md
README.md
+1
-0
README.md
examples/simple-vpc/README.md
+1
-0
outputs.tf
examples/simple-vpc/outputs.tf
+6
-0
outputs.tf
outputs.tf
+4
-0
No files found.
README.md
View file @
4e484aa7
...
...
@@ -255,6 +255,7 @@ Terraform version 0.10.3 or newer is required for this module to work.
| Name | Description |
|------|-------------|
| azs | A list of availability zones spefified as argument to this module |
| database\_route\_table\_ids | List of IDs of database route tables |
| database\_subnet\_group | ID of database subnet group |
| database\_subnets | List of IDs of database subnets |
...
...
examples/simple-vpc/README.md
View file @
4e484aa7
...
...
@@ -21,6 +21,7 @@ Note that this example may create resources which can cost money (AWS Elastic IP
| Name | Description |
|------|-------------|
| azs | A list of availability zones spefified as argument to this module |
| nat
\_
public
\_
ips | List of public Elastic IPs created for AWS NAT Gateway |
| private
\_
subnets | List of IDs of private subnets |
| public
\_
subnets | List of IDs of public subnets |
...
...
examples/simple-vpc/outputs.tf
View file @
4e484aa7
...
...
@@ -31,3 +31,9 @@ output "nat_public_ips" {
description
=
"List of public Elastic IPs created for AWS NAT Gateway"
value
=
[
"
${module
.
vpc
.
nat_public_ips
}
"
]
}
# AZs
output
"azs"
{
description
=
"A list of availability zones spefified as argument to this module"
value
=
[
"
${module
.
vpc
.
azs
}
"
]
}
outputs.tf
View file @
4e484aa7
...
...
@@ -278,3 +278,7 @@ output "default_vpc_main_route_table_id" {
// value = "${element(concat(aws_default_vpc.this.*.ipv6_cidr_block, list("")), 0)}"
//}
output
"azs"
{
description
=
"A list of availability zones spefified as argument to this module"
value
=
"
${
var
.
azs
}
"
}
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