-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
private blobstorage to store party contracts #33
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also for this storage I suggest to:
- use private endpoints
- enable soft delete
- enable advanced_threat_protection for prod env
src/core/storage.tf
Outdated
name = replace(format("%s-blobstorage", local.project), "-", "") | ||
account_kind = "StorageV2" | ||
account_tier = "Standard" | ||
account_replication_type = "LRS" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
since in this storage will be stored contracts I suggest to use RA-GZRS for production env (LRS for dev,uat)
https://docs.microsoft.com/en-us/azure/storage/common/storage-redundancy#durability-and-availability-parameters
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@iwoak how much days should we configure the delete retention period in prod? in other environment it'sok to set 1 day?
# Conflicts: # src/core/variables.tf
List of changes
private blobstorage to store party contracts
Motivation and context
Type of changes
Env to apply
Does this introduce a change to production resources with possible user impact?
Does this introduce an unwanted change on infrastructure? Check terraform plan execution result
Other information
If PR is partially applied, why? (reserved to mantainers)