Home > Software design >  Where is the ActionType for AWS Elastic Beanstalk deployments?
Where is the ActionType for AWS Elastic Beanstalk deployments?

Time:12-16

I am creating an AWS CodePipeline via Terraform but I am stuck at the Deployment Stage. I would like to deploy my application to the AWS Elastic Beanstalk, but I cannot find the correct ActionType enter image description here

CodePudding user response:

Not sure about terraform, but for Cloudformation, it should be:

Provider: "ElasticBeanstalk"
Configuration:
  ApplicationName: !Ref ApplicationName
  EnvironmentName: !Ref EnvironmentName

Try "ElasticBeanstalk" for provider and add ApplicationName and EnvironmentName keys in configuration.

  • Related