Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
A python wrapper around a terraform ec2 deployment. It awaits instances till their done initializing and allows the user more control over updating or not updating particular instances. It also streamlines project setup and deployments with GitHub workflows.
You can install this package with pip by running the command below.
pip install ec2-manager
Here is a basic example of
ec2-manger init
This will setup your repo with a template and a config that looks like this:
# globals
type: example
aws_region: us-east-1
vpc_name: "Default VPC"
public_subnet_cidr: "172.31.0.0/20"
# instance configurations
instances:
example-instance-1:
instance_type: t4g.nano
update: True
volume_size: 8
commands:
start: "docker-compose up --detach"
stop: "docker-compose down"
envs:
EXAMPLE: HelloWorld
ports:
- protocol: tcp
from_port: 80
to_port: 80
ec2-manger set-secrets
ec2-manger apply
You can subclass ec2-manager to script in any custom steps or additional remote commands.
import ec2_manager
class CustomManager(ec2_manager.EC2Manager):
def update(self):
print('Override!!')
self.create_instances()
self.update_repos()
self.stop()
self.start()
Then run ec2-manager with the override.py
in the working directory and it will use that class instead!
FAQs
Unknown package
We found that ec2-manager demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.