Skip to content

Commit 4b16def

Browse files
committed
terraform->instance
1 parent 1151480 commit 4b16def

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

75 files changed

+21
-22
lines changed

.github/dependabot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ updates:
7474
directories:
7575
- "/infrastructure/grafana/non-prod/terraform"
7676
- "/infrastructure/account"
77-
- "/infrastructure/terraform"
77+
- "/infrastructure/instance"
7878
- "/infrastructure/terraform_aws_backup/**"
7979
schedule:
8080
interval: "daily"

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ __pycache__/
1717
.envrc
1818
smoketest-report.xml
1919
lambda_typescript/**/*.js
20-
terraform/zips
20+
instance/zips
2121
.dir-locals.el
2222
*.pyc
2323
.python-version

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ build-proxy:
3737

3838
#Files to loop over in release
3939
# VED-811: remove everything except for proxy related files as we move to Github Actions for backend deployment
40-
_dist_include="poetry.toml Makefile build/. specification sandbox infrastructure/terraform utilities/scripts"
40+
_dist_include="poetry.toml Makefile build/. specification sandbox infrastructure/instance utilities/scripts"
4141

4242
#Create /dist/ sub-directory and copy files into directory
4343
#Ensure full dir structure is preserved for Lambdas

README.md

Lines changed: 3 additions & 3 deletions

azure/templates/post-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ steps:
5353
echo Apigee environment: $APIGEE_ENVIRONMENT
5454
echo pr_no: $pr_no
5555
56-
cd terraform
56+
cd instance
5757
make init environment=${{ parameters.aws_account_type }} sub_environment=$workspace
5858
make apply environment=${{ parameters.aws_account_type }} sub_environment=$workspace
5959

azure/templates/post-prod-deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ steps:
1818
- bash: |
1919
pwd
2020
ls -la
21-
cd terraform
21+
cd instance
2222
displayName: "Check Directory and Navigate to Terraform for AWS Deployment"
2323
workingDirectory: "$(Pipeline.Workspace)/s/$(SERVICE_NAME)"
2424
@@ -35,7 +35,7 @@ steps:
3535
echo workspace: $workspace
3636
echo AWS environment: $APIGEE_ENVIRONMENT
3737
38-
cd terraform
38+
cd instance
3939
4040
make init environment=${{ parameters.aws_account_type }} sub_environment=$workspace
4141
make apply environment=${{ parameters.aws_account_type }} sub_environment=$workspace
File renamed without changes.
File renamed without changes.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,13 +56,13 @@ destroy: workspace
5656
output:
5757
$(tf_cmd) output -raw $(name)
5858

59-
#Make lambda zip file in /terraform/zips directory. Whenever code gets changed in lamdba_typescript directory , new zip file gets uploaded to s3. For local,you can you this make target
59+
#Make lambda zip file in /infrastructure/instance/zips directory. Whenever code gets changed in lamdba_typescript directory , new zip file gets uploaded to s3. For local,you can you this make target
6060
lambda-zip:
6161
cd ../lambda_typescript && \
6262
chmod +x ./deploy.sh && \
6363
./deploy.sh
6464

65-
#Make catch-all-lambda zip file in /terraform/zips directory. Whenever code gets changed in lamdba_typescript directory , new zip file gets uploaded to s3. For local,you can you this make target
65+
#Make catch-all-lambda zip file in /infrastructure/instance/zips directory. Whenever code gets changed in lamdba_typescript directory , new zip file gets uploaded to s3. For local,you can you this make target
6666
catch-all-zip:
6767
cd ../catch_all_lambda && \
6868
chmod +x ./deploy.sh && \

0 commit comments

Comments
 (0)