You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/env.md
+1-100Lines changed: 1 addition & 100 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -502,107 +502,8 @@ The default region used by the AWS provider. All resources managed by terraform
502
502
503
503
#### TF_VAR_s3_bucket_unique_suffix
504
504
505
-
A unique suffix added to all S3 bucket names. You choose this suffix once and can't change it afterwards as it is not allowed to rename a bucket (terraform would delete the current bucket and create a new one. All your data would be lost for ever). This suffix is needed because a bucket name is unique accross all existing AWS accounts: https://docs.aws.amazon.com/AmazonS3/latest/dev/BucketRestrictions.html
505
+
A unique suffix added to all S3 bucket names. You choose this suffix once and can't change it afterwards as it is not allowed to rename a bucket (terraform would delete the current bucket and create a new one. All your data would be lost for ever).
506
506
A suffix can be your company name or any random string. If you don't add this variable, you will not be able to create any s3 bucket in your project.
507
507
508
508
- Type: string
509
509
- Required: Yes
510
-
511
-
#### TF_VAR_cloudfront_trusted_signer_id
512
-
513
-
The ID of the AWS master account (not its access key!) with which we want to sign urls (it is declared in the CloudFront distribution as a signing account).
514
-
515
-
- Type: string
516
-
- Required: Yes
517
-
- Default: None
518
-
519
-
#### TF_VAR_update_state_secret
520
-
521
-
Secret used to sign messages exchanged between the Django backend & AWS lambdas.
522
-
523
-
Note: should be included in the list of values declared in `DJANGO_UPDATE_STATE_SHARED_SECRETS` for the Django backend deployment with which our deployment's lambdas will communicate.
524
-
525
-
- Type: string <br> ⚠️ *MUST NOT INCLUDE ANY COMMAS* as the corresponding Django setting is a comma-separated list.
526
-
- Required: Yes
527
-
- Default: None
528
-
529
-
#### TF_VAR_marsha_base_url
530
-
531
-
The marsha backend url. This url will be used in the lambda as base url to build all the url called from all lambdas.
532
-
533
-
Example: `marsha.education`
534
-
535
-
- Type: string
536
-
- Required: Yes
537
-
- Default: None
538
-
539
-
#### TF_VAR_update_state_endpoint
540
-
541
-
The endpoint in Marsha to which our lambdas should POST state updates when they process files.
542
-
543
-
Example: `/api/update-state`.
544
-
545
-
- Type: string
546
-
- Required: Yes
547
-
- Default: None
548
-
549
-
#### TF_VAR_update_state_disable_ssl_validation
550
-
551
-
Whether SSL certificate validation in requests made by the AWS lambdas should be disabled. This allows Django to run on a domain with a self-signed or otherwise invalid certificate in non-production environments.
552
-
553
-
- Type: boolean
554
-
- Required: No
555
-
- Default: false
556
-
557
-
#### TF_VAR_migrations
558
-
559
-
A list of migrations to execute by the migration lambda without the extension (`.js`). List of migrations are available in `src/aws/lambda-migrate/src/migrations`.
560
-
To execute the migration `0001_encode_timed_text_tracks.js` set this variable with `0001_encode_timed_text_tracks`
561
-
562
-
Example: ["0001_encode_timed_text_tracks"]
563
-
564
-
- Type: list of strings
565
-
- Required: No
566
-
- Default: []
567
-
568
-
#### TF_VAR_lambda_image_name
569
-
570
-
The [ECR](https://aws.amazon.com/ecr/) image name you want to use. All lambdas are built in one docker image and hosted in this repository
571
-
572
-
- Type: string
573
-
- Required: Yes
574
-
- Default: None
575
-
576
-
#### TF_VAR_lambda_image_tag
577
-
578
-
The lambda docker image tag used by all the lambdas
579
-
580
-
- Type: string
581
-
- Required: Yes
582
-
- Default: None
583
-
584
-
#### TF_VAR_ecr_lambda_marsha_arn
585
-
586
-
The [arn](https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html) associated with the ECR image name.
587
-
This value can be found in the shared_resources terraform output.
588
-
589
-
- Type: string
590
-
- Required: Yes
591
-
- Default: None
592
-
593
-
#### TF_VAR_medialive_lambda_name
594
-
595
-
This variable is used by the medialive routing lambda. This lambda will use the variable to determine on which lambda
596
-
the event should be routed.
597
-
598
-
- Type: string
599
-
- Required: Yes
600
-
- Default: marsha-medialive
601
-
602
-
#### TF_VAR_lambda_convert_memory
603
-
604
-
This variable allow you to configure the amount of memory allocated for the lambda convert. Depending the environment you are using you would like to increase this value.
0 commit comments