Skip to content

Commit

Permalink
create-rds-oracle
Browse files Browse the repository at this point in the history
  • Loading branch information
themaheshyadav committed Apr 1, 2022
1 parent 2602fca commit 04c3bdc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions _examples/complete-mysql/main.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
provider "aws" {
region = "eu-west-1"
region = "ap-south-1"
}

module "vpc" {
Expand All @@ -21,7 +21,7 @@ module "subnets" {
environment = "test"
label_order = ["environment", "name"]

availability_zones = ["eu-west-1a", "eu-west-1b", "eu-west-1c"]
availability_zones = ["ap-south-1a", "ap-south-1b", "ap-south-1c"]
vpc_id = module.vpc.vpc_id
type = "public"
igw_id = module.vpc.igw_id
Expand Down
2 changes: 1 addition & 1 deletion _examples/oracle_db/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ module "security_group" {
allowed_ports = [3306]
}

module "mysql" {
module "oracle" {
source = "../../"

name = "sg"
Expand Down

0 comments on commit 04c3bdc

Please sign in to comment.