Eclipse uses a launch configuration to store launch parameters of executable application in the workspace.
Questions tagged [launch-configuration]
47 questions
0
votes
1 answer
Generate Eclipse launch configurations with Gradle
We use Eclipse to launch and debug our Java GWT project. We have a couple of eclipse launch configuration files with many classpath entries needed for running the project.
Previously we used ant to build our project and had all our dependencies…

thawrg
- 46
- 3
0
votes
1 answer
How to debug a micro frontend app using module federation dynamic system host pattern in vscode
As per Dynamic system host example How can I configure debug on vscode? I am able to debug the host application but not the remote one.

Vikrant
- 748
- 5
- 15
0
votes
1 answer
Assigning a launch configuration to an Auto-Scaling Group using CDK
Note: the code here is Go but happy to see answers in any CDK language.
In AWS CDK, you can create Launch Configurations:
// Create the launch configuration
lc := awsautoscaling.NewCfnLaunchConfiguration(
stack,
jsii.String("asg-lc"),
…

t j
- 7,026
- 12
- 46
- 66
0
votes
1 answer
Multiple template files with autoscaling groups and launch configurations with Terraform
I have 3 autoscaling groups all using slightly different template files. The difference in the 3 template files I have is, each template file is attaching a different EBS volume upon startup of an instance in the autoscaling group. I am trying to…

Dave Michaels
- 847
- 1
- 19
- 51
0
votes
1 answer
Create launch configuration not only for workspace instead for that specific language
How to create a launch configuration that can be used on other projects, not only for current workspace?
I have my launch config for running JavaFX projects. But I want it to be used for my other JavaFX projects, it's only on the launch.json on the…

snich
- 67
- 1
- 5
0
votes
1 answer
How can I select a community AMI in AWS Launch configuration?
While creating a launch configuration, there is no way to select a community AMI? Only marketplace AMIs come on top. Scrolled for long, but still cannot find a community AMI.
Launch configuration screen
Marketplace AMI

Arup Nayak
- 55
- 7
0
votes
1 answer
How to ensure that the ASG ( Auto scaling Group) replaces existing instances with every change in the Launch configuration
The infrastructure is provisioned using terraform code.
In our AWS environment, we have a new AMI created for every commit made to the repository. Now, if we want to have autoscaling configured for the web servers behind an ALB using this new…

Dimpy Chugh
- 23
- 5
0
votes
0 answers
terraform apply trying to destroy launch configuration that is deleted manually
I've deleted couple of launch configurations from AWS console which I didn't need. Now with an updated terraform script, terraform apply tries to deleted launch configurations that are deleted manually and fails. Prior to terraform apply terraform…

user11411591
- 77
- 2
- 3
- 9
0
votes
2 answers
EC2 launch configuration user data is not executed
I've just created a new Launch Configuration to use with an Auto Scaling group. When a new EC2 instance is launched, I would like the script to be executed.
In details:
I have a script deploy.sh that updates my application code using git...
When a…

Daniele
- 538
- 1
- 5
- 17
0
votes
1 answer
Is there a way to list launch configurations sorted by CreatedTime via aws-cli?
I am finding a way on how to list launch configurations sorted by CreatedTime.
When I ran this command below, it does not return the oldest LC:
aws autoscaling describe-launch-configurations --max-items 1
Is there a way for this? Thank you!

Jane S.
- 215
- 1
- 4
- 12
0
votes
1 answer
Hide run/debug launch configuration in eclipse run/debug dialog programmatically
How to hide a given launch configuration type in eclipse run/debug dialog?
As asked here in this bug hiding with activities is not working for me.
Are there any other ways to hide a given launch configuration type in eclipse run/debug dialog?

Chandrayya G K
- 8,719
- 5
- 40
- 68
0
votes
1 answer
Cloudformation ECS cluster
I am attempting to write a Cloud Formation Template that will create a launch configuration, ASG, ECS cluster, and register the ec2 instances in the ASG to said cluster.
I have a long userdata.sh file that is used to setup a launch configuration.
By…

user2254140
- 71
- 2
- 7
0
votes
1 answer
multi region apache cassandra in autoscaling group in AWS
For a multi-region setup of Apache Cassandra in autoscaling group, where the two regions are peered to communicate on a private network, meaning no public IPs. All private IPs for communications between nodes in the multiple regions.
What is the…

uberrebu
- 3,597
- 9
- 38
- 73
0
votes
1 answer
Launch n times a Launch Configuration C/C++
I need to launch n times a specific Launch Configurations C/C++ defined by the user, where i change every time the binary executed. How can i do this programmatically? It is possible? I think that it's possible to create n different Run…

ghiotto86
- 15
- 5
0
votes
1 answer
Why is Eclipse PDE Launch Configuration is building all projects
I have created a launch configuration to run an executable file. When I run the configuration, it builds all projects in the workspace before running the actual tool to launch the file.
Anyone has any idea why it builds all projects, I want to avoid…

Varun
- 31
- 1
- 8