Skip to content

Commit

Permalink
Update module source paths and rename MongoDB Atlas module
Browse files Browse the repository at this point in the history
  • Loading branch information
ulises-jeremias committed Jan 16, 2025
1 parent 62dcf91 commit 3b6ecff
Show file tree
Hide file tree
Showing 17 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion modules/aws-amplify-app/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Terraform module to bootstrap an AWS Amplify App.

```hcl
module "app" {
source = "../../modules/amplify-app"
source = "../../modules/aws-amplify-app"
name = "example-amplify-app"
Expand Down
2 changes: 1 addition & 1 deletion modules/aws-bastion/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ A bastion host, sometimes called a `jump box`, is a server that provides a singl

```hcl
module "bastion" {
source = "../../modules/bastion"
source = "../../modules/aws-bastion"
name = "example-bastion"
vpc_id = "vpc-1234567890"
Expand Down
2 changes: 1 addition & 1 deletion modules/aws-bastion/vpc-endpoints.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module "vpc_endpoints" {
source = "../../modules/vpc-endpoints"
source = "../../modules/aws-vpc-endpoints"

vpc_id = var.vpc_id

Expand Down
2 changes: 1 addition & 1 deletion modules/aws-docdb/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Terrform module to bootstrap a DocumentDB cluster.

```hcl
module "db" {
source = "../../modules/docdb"
source = "../../modules/aws-docdb"
name = "examples-docdb-cluster"
Expand Down
2 changes: 1 addition & 1 deletion modules/aws-eks/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Terraform module to provision an EKS cluster using the CloudPosse EKS module.

```hcl
module "eks" {
source = "../../modules/eks"
source = "../../modules/aws-eks"
name = "my-eks-cluster"
Expand Down
2 changes: 1 addition & 1 deletion modules/aws-iam-role/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ data "aws_iam_policy_document" "base" {
}
module "role" {
source = "../../modules/iam-role"
source = "../../modules/aws-iam-role"
name = "eg-prod-app"
Expand Down
2 changes: 1 addition & 1 deletion modules/aws-rds-aurora/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Terraform module to bootstrap a RDS Aurora instances and other database resource

```hcl
module "db" {
source = "../../modules/rds-aurora"
source = "../../modules/aws-rds-aurora"
name = "examples-rds-aurora"
Expand Down
2 changes: 1 addition & 1 deletion modules/aws-rds/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Terraform module to bootstrap a RDS DB instance.

```hcl
module "db" {
source = "../../modules/rds"
source = "../../modules/aws-rds"
name = "examples-rds-instance"
Expand Down
2 changes: 1 addition & 1 deletion modules/aws-vpc-endpoints/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Terraform module to create VPC endpoints in an existing VPC.

```hcl
module "vpc_endpoints" {
source = "../../modules/vpc-endpoints"
source = "../../modules/aws-vpc-endpoints"
vpc_id = module.vpc.vpc_id
Expand Down
2 changes: 1 addition & 1 deletion modules/aws-vpc/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Terraform module to bootstrap a VPC for use with our shared infrastructure.

```hcl
module "vpc" {
source = "../../modules/vpc"
source = "../../modules/aws-vpc"
name = "shared-vpc"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# MongoDB Atlas Module
# MongoDB Atlas Cluster Module

This module creates a MongoDB Atlas cluster and configures a VPC peering connection between the Atlas cluster and the specified VPC.

Expand All @@ -13,7 +13,7 @@ provider "mongodbatlas" {}
module "atlas_cluster" {
source = "../../modules/mongodb"
source = "../../modules/mongodb-atlas-cluster"
project_name = "my-project"
org_id = "5edf67f9b9614996228111"
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion scripts/connect-to-core-networking-bastion-host.sh
Original file line number Diff line number Diff line change
Expand Up @@ -65,4 +65,4 @@ for arg in "$@"; do
done

# Run the connection command
"${ROOT}/modules/bastion/scripts/connect.sh" --tag="$bastion_tag" "${connect_args[@]}"
"${ROOT}aws-bastion/scripts/connect.sh" --tag="$bastion_tag" "${connect_args[@]}"

0 comments on commit 3b6ecff

Please sign in to comment.