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
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.