-
Notifications
You must be signed in to change notification settings - Fork 25
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
include target group and load balancer at service creation? #15
Comments
Hi @blysik We're working on getting this added right now as an option for you to specify when building out. |
Awesome! You all are great. I'll hang tight and wait for it. Bonus points if there's a process to follow from getting to where we are now (no load balancer), to destroying/re-creating with an ALB without losing out data. :) |
@blysik we will add that in - the nice thing about the CDK L2 constructs for things that store data is they typically add a
const serverFileSystem = new efs.FileSystem.fromFileSystemAttributes(this, "valheimServerStorage", {
fileSystemId: 'YOUR_EXISTING_FILESYSTEM_ID,
securityGroup: fsSecurityGroup, // will need rewire a few things for this part
}); We will ideally add some logic to grab this stuff for you if an old template created it |
Hi! It looks like if you want to use an application load balancer for a fargate service, it needs to be created when you create the service.
Should this be added in some way? Thanks!
The text was updated successfully, but these errors were encountered: