Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion examples/complete/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Note that this example may create resources which cost money. Run `terraform des
| <a name="module_main_sg"></a> [main\_sg](#module\_main\_sg) | ../../ | n/a |
| <a name="module_only_rules"></a> [only\_rules](#module\_only\_rules) | ../../ | n/a |
| <a name="module_prefix_list"></a> [prefix\_list](#module\_prefix\_list) | ../../ | n/a |
| <a name="module_vpc"></a> [vpc](#module\_vpc) | terraform-aws-modules/vpc/aws | n/a |
| <a name="module_vpc"></a> [vpc](#module\_vpc) | terraform-aws-modules/vpc/aws | ~> 3.0 |

## Resources

Expand Down
4 changes: 2 additions & 2 deletions examples/complete/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ provider "aws" {

skip_credentials_validation = true
skip_requesting_account_id = true
skip_get_ec2_platforms = true
skip_metadata_api_check = true
skip_region_validation = true
}
Expand All @@ -24,7 +23,8 @@ data "aws_security_group" "default" {
# VPC which is used as an argument in complete-sg
##################################################
module "vpc" {
source = "terraform-aws-modules/vpc/aws"
source = "terraform-aws-modules/vpc/aws"
version = "~> 3.0"

name = "complete-sg-demo-vpc"
cidr = "10.20.0.0/20"
Expand Down
6 changes: 3 additions & 3 deletions rules.tf
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,8 @@ variable "rules" {
# Logstash
logstash-tcp = [5044, 5044, "tcp", "Logstash"]
# Loki
loki-grafana = [3100, 3100, "tcp", "Grafana Loki enpoint"]
loki-grafana-grpc = [9096, 9096, "tcp", "Grafana Loki GRPC"]
loki-grafana = [3100, 3100, "tcp", "Grafana Loki endpoint"]
loki-grafana-grpc = [9095, 9095, "tcp", "Grafana Loki GRPC"]
# Memcached
memcached-tcp = [11211, 11211, "tcp", "Memcached"]
# MinIO
Expand Down Expand Up @@ -135,7 +135,7 @@ variable "rules" {
prometheus-pushgateway-http-tcp = [9091, 9091, "tcp", "Prometheus Pushgateway"]
prometheus-node-exporter-http-tcp = [9100, 9100, "tcp", "Prometheus Node Exporter"]
# Promtail
promtail-http = [9200, 9200, "tcp", "Promtail endpoint"]
promtail-http = [9080, 9080, "tcp", "Promtail endpoint"]
# Oracle Database
oracle-db-tcp = [1521, 1521, "tcp", "Oracle"]
# Octopus Tentacles
Expand Down