Releases: crunchyroll/ef-open
Releases · crunchyroll/ef-open
Fix temp-file creation/deletion bug
0.7.1 update local test-file creation and deletion (#97)
Linting
Actually publish the stack termination protection feature
The previous version never made it because of the unit tests failure.
stack termination protection feature
Enables stack termination protection now based on the envs specified in ef_site_config.yml
Allow Jenkins Master to use boto profiles
use profile on jenkins master (#93) * use profile on jenkins master * remove nested logic
Added CAPABILITY_AUTO_EXPAND
This allows ef-cf to handle cloudfomation macros.
Add ignore-checks to ef-cf --lint
fix ef-password to pass tests. (#89) `ef-password --length 10` is technically valid, so making the excluseive set of --secret_file, --decrypt, and --plaintext be required was a bad assumption.
Support KMS keys for aws_fixtures and ef-cf --lint support
Support KMS keys for aws_fixtures and ef-cf --lint support
Updated unit tests for cognito
Forgot to update unit tests for cognito lookup.
Fixed return value of cognito lookup
use to return this
return "arn:aws:cognito-identity:${{AWS::Region}}:${{AWS::AccountId}}:identitypool/{}".format(identity_pool_id)
now returns this
return "arn:aws:cognito-identity:{{{{REGION}}}}:{{{{ACCOUNT}}}}:identitypool/{}".format(identity_pool_id)
relieves the pain of debugging on the user end in cloudformation on why it doesn't work if they don't put it in Fn::Subs in the old version.