Cloud services that provide continuous integration and delivery [closed] - amazon-web-services

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a book, tool, software library, tutorial or other off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
Anyone know of some good cloud services that provide continuous integration and delivery with deployment to cloud providers like AWS or GCE? We use Jenkinks and want to integrate it with a cloud service so we can rapidly deploy applications to dev, test instances on AWS and GCE.

Cloud services don't provide 'services' in general. They provide the infrastructure where you can build the services on top of.
It's quite easy to deploy to AWS instances with Jenkins/Bamboo/etc.

for a full end to end CI & CD "in the cloud" you can try
codeship (https://www.codeship.io/)
circleci (https://circleci.com/)
travis CI (https://travis-ci.com/)
But your sourcecode will probably need to be hosted on github or bitbucket not on your local infrastructure.

You can find a good overview on different hosted continuous delivery services at this Quora answer
Full Disclosure I'm one of the founders of Codeship

Related

Different options for creating an AWS EKS Cluster [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 2 years ago.
Improve this question
An AWS EKS Cluster can be created using the AWS CLI or eksctl commands. And AWS is supporting both of them. Both of them at the end of day creates a EKS cluster.
When to use what? I am not able to find any differences between the two.aws
AWS CLI is an imperative way to do it. With eksctl you can use both imperative and declarative way (e.g. when using yaml-manifests).
In addition, you can create EKS cluster declaratively when using CloudFormation EKS cluster or Terraform AWS EKS module.
What is best for you depends on your situation. For laboratory exploration, it is easiest to use imperative commands. But when you are setting up something like a production environment, you want your changes version controlled in e.g. git - so a declarative way to work is a better fit.
What declarative method to use depends on if you e.g. also provision other AWS resources. It is easiest to use same tool for all your infrastructure, e.g. CloudFormation for everything or Terraform for everything. An advantage with Terraform is that it is available for other cloud providers as well, e.g. both AWS and GCP.

What are some good resources for aws security? Like a security checklist for different services [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 2 years ago.
Improve this question
I'll be working on a project to improve the security of a client's aws infrastructure soon. While I know the basics (cleared solutions architect associate) I'm not great at all things aws security.
It would be great if you kind folks directed me to some good resources that I can refer to that would help create a sound plan to evaluate the client's cloud security and improve their security posture on aws.
Something like a checklist for different services. Like for example enabling log validation on your cloud trail logs for instance.
Any help is highly appreciated.
Much thanks.
Some places to visit:
Cloud Security – Amazon Web Services (AWS)
AWS Whitepapers & Guides
Amazon Web Services: Overview of Security Processes
Whitepaper | AWS Security Blog

Cloud Formation Support for Rate-Based WAF Rule [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 3 years ago.
Improve this question
I want to set up a Cloud Formation in aws to attach a Rate Based Rule to my LB. I have been reading the AWS documentation for hours, and I know how to create a regular WAF Rule in Cloud Formation and attach them to my LB in Cloud Formation. The problem is I cant find how to create a Rule of type Rate-Based of WAF in CF, there is not RateBasedRule object in Cloud Formation. Does anyone knows how to get around this?
After talking to aws support itself: This feature is not yet supported by aws as of today.

AWS Resource confusion on S3 [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 4 years ago.
Improve this question
I am trying to develop a Spring Cloud microservices using Spring MVC and Spring boot. And I would like to deploy in AWS cloud. When I exploring the AWS I found the computing service EC2 and Storage services EBS and Elastic Beanstalk. I found that when creating EC2 getting a default EBS volume.
Here my doubt is that when I deploying my Spring Cloud microservice in Tomcat environment. I also need to create a RDS instance for my microservice, can I choose S3 as storage?
And also I need to deploy my Angular 2 application using S3 and static web site hosting method. So can I use separate buckets for both microservices and Angular application hosting?
I am new to AWS and cloud service platform.
On S3 you can save files; its more like extensible storage as a sevice.
RDS is like RDBMS as a service..
Surely you can use separate buckets ; or different folders in same buckets.

beginners guide to Amazon Web Services (EC2, S3, RDS, EBS etc) [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
Ive been delving into the world of AWS and, with very little server management experience under my belt, I'm quickly getting lost!
I'm looking at creating a system that uses Route 53, Elastic Load Balancing, EC2, RDS, S3 (possibly with CloudFront as well) so I can host a user generated content website that also streams video.
So Ive been looking at the following books:
Host Your Web Site On The Cloud: Amazon Web Services Made Easy
Programming Amazon Web Services: S3, EC2, SQS, FPS, and SimpleDB
Programming Amazon EC2: Run Applications on Amazon's Infrastructure with EC2, S3, SQS, SimpleDB, and Other Services
If I had to go for one of these what would you recommend?
Most importantly are there any resources you can recommend for a newbie like myself to quickly learn and understand the nuances to AWS?
TIA
Although all of those resources are good, the best way to dive into using AWS is in my experience CloudFormation. With CloudFormation you are able to script most if not all of your AWS resources in a single json script. By writing your cloudformation scripts and looking through the documentation and sample scripts, you will start to get aquatinted with how all of the AWS toolsets work.
Most importantly are there any resources you can reconmend for a
newbie like myself to quickly learn and understand the nuances to AWS?
As mentioned above, CloudFormation
However to make sure I answer your question:
If I had to go for one of these what would you recommend?
I have read all 3 resources listed and I found Programming EC2 to be the most useful in understanding the AWS toolset