1. Packages
  2. AWS
  3. API Docs
  4. elasticbeanstalk
  5. Application
AWS v6.75.0 published on Wednesday, Apr 2, 2025 by Pulumi

aws.elasticbeanstalk.Application

Explore with Pulumi AI

Provides an Elastic Beanstalk Application Resource. Elastic Beanstalk allows you to deploy and manage applications in the AWS cloud without worrying about the infrastructure that runs those applications.

This resource creates an application that has one configuration template named default, and no application versions

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";

const tftest = new aws.elasticbeanstalk.Application("tftest", {
    name: "tf-test-name",
    description: "tf-test-desc",
    appversionLifecycle: {
        serviceRole: beanstalkService.arn,
        maxCount: 128,
        deleteSourceFromS3: true,
    },
});
Copy
import pulumi
import pulumi_aws as aws

tftest = aws.elasticbeanstalk.Application("tftest",
    name="tf-test-name",
    description="tf-test-desc",
    appversion_lifecycle={
        "service_role": beanstalk_service["arn"],
        "max_count": 128,
        "delete_source_from_s3": True,
    })
Copy
package main

import (
	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/elasticbeanstalk"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := elasticbeanstalk.NewApplication(ctx, "tftest", &elasticbeanstalk.ApplicationArgs{
			Name:        pulumi.String("tf-test-name"),
			Description: pulumi.String("tf-test-desc"),
			AppversionLifecycle: &elasticbeanstalk.ApplicationAppversionLifecycleArgs{
				ServiceRole:        pulumi.Any(beanstalkService.Arn),
				MaxCount:           pulumi.Int(128),
				DeleteSourceFromS3: pulumi.Bool(true),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;

return await Deployment.RunAsync(() => 
{
    var tftest = new Aws.ElasticBeanstalk.Application("tftest", new()
    {
        Name = "tf-test-name",
        Description = "tf-test-desc",
        AppversionLifecycle = new Aws.ElasticBeanstalk.Inputs.ApplicationAppversionLifecycleArgs
        {
            ServiceRole = beanstalkService.Arn,
            MaxCount = 128,
            DeleteSourceFromS3 = true,
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.elasticbeanstalk.Application;
import com.pulumi.aws.elasticbeanstalk.ApplicationArgs;
import com.pulumi.aws.elasticbeanstalk.inputs.ApplicationAppversionLifecycleArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        var tftest = new Application("tftest", ApplicationArgs.builder()
            .name("tf-test-name")
            .description("tf-test-desc")
            .appversionLifecycle(ApplicationAppversionLifecycleArgs.builder()
                .serviceRole(beanstalkService.arn())
                .maxCount(128)
                .deleteSourceFromS3(true)
                .build())
            .build());

    }
}
Copy
resources:
  tftest:
    type: aws:elasticbeanstalk:Application
    properties:
      name: tf-test-name
      description: tf-test-desc
      appversionLifecycle:
        serviceRole: ${beanstalkService.arn}
        maxCount: 128
        deleteSourceFromS3: true
Copy

Create Application Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new Application(name: string, args?: ApplicationArgs, opts?: CustomResourceOptions);
@overload
def Application(resource_name: str,
                args: Optional[ApplicationArgs] = None,
                opts: Optional[ResourceOptions] = None)

@overload
def Application(resource_name: str,
                opts: Optional[ResourceOptions] = None,
                appversion_lifecycle: Optional[ApplicationAppversionLifecycleArgs] = None,
                description: Optional[str] = None,
                name: Optional[str] = None,
                tags: Optional[Mapping[str, str]] = None)
func NewApplication(ctx *Context, name string, args *ApplicationArgs, opts ...ResourceOption) (*Application, error)
public Application(string name, ApplicationArgs? args = null, CustomResourceOptions? opts = null)
public Application(String name, ApplicationArgs args)
public Application(String name, ApplicationArgs args, CustomResourceOptions options)
type: aws:elasticbeanstalk:Application
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args ApplicationArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args ApplicationArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args ApplicationArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args ApplicationArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. ApplicationArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

The following reference example uses placeholder values for all input properties.

var exampleapplicationResourceResourceFromElasticbeanstalkapplication = new Aws.ElasticBeanstalk.Application("exampleapplicationResourceResourceFromElasticbeanstalkapplication", new()
{
    AppversionLifecycle = new Aws.ElasticBeanstalk.Inputs.ApplicationAppversionLifecycleArgs
    {
        ServiceRole = "string",
        DeleteSourceFromS3 = false,
        MaxAgeInDays = 0,
        MaxCount = 0,
    },
    Description = "string",
    Name = "string",
    Tags = 
    {
        { "string", "string" },
    },
});
Copy
example, err := elasticbeanstalk.NewApplication(ctx, "exampleapplicationResourceResourceFromElasticbeanstalkapplication", &elasticbeanstalk.ApplicationArgs{
	AppversionLifecycle: &elasticbeanstalk.ApplicationAppversionLifecycleArgs{
		ServiceRole:        pulumi.String("string"),
		DeleteSourceFromS3: pulumi.Bool(false),
		MaxAgeInDays:       pulumi.Int(0),
		MaxCount:           pulumi.Int(0),
	},
	Description: pulumi.String("string"),
	Name:        pulumi.String("string"),
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
Copy
var exampleapplicationResourceResourceFromElasticbeanstalkapplication = new Application("exampleapplicationResourceResourceFromElasticbeanstalkapplication", ApplicationArgs.builder()
    .appversionLifecycle(ApplicationAppversionLifecycleArgs.builder()
        .serviceRole("string")
        .deleteSourceFromS3(false)
        .maxAgeInDays(0)
        .maxCount(0)
        .build())
    .description("string")
    .name("string")
    .tags(Map.of("string", "string"))
    .build());
Copy
exampleapplication_resource_resource_from_elasticbeanstalkapplication = aws.elasticbeanstalk.Application("exampleapplicationResourceResourceFromElasticbeanstalkapplication",
    appversion_lifecycle={
        "service_role": "string",
        "delete_source_from_s3": False,
        "max_age_in_days": 0,
        "max_count": 0,
    },
    description="string",
    name="string",
    tags={
        "string": "string",
    })
Copy
const exampleapplicationResourceResourceFromElasticbeanstalkapplication = new aws.elasticbeanstalk.Application("exampleapplicationResourceResourceFromElasticbeanstalkapplication", {
    appversionLifecycle: {
        serviceRole: "string",
        deleteSourceFromS3: false,
        maxAgeInDays: 0,
        maxCount: 0,
    },
    description: "string",
    name: "string",
    tags: {
        string: "string",
    },
});
Copy
type: aws:elasticbeanstalk:Application
properties:
    appversionLifecycle:
        deleteSourceFromS3: false
        maxAgeInDays: 0
        maxCount: 0
        serviceRole: string
    description: string
    name: string
    tags:
        string: string
Copy

Application Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The Application resource accepts the following input properties:

AppversionLifecycle ApplicationAppversionLifecycle
Description string
Short description of the application
Name Changes to this property will trigger replacement. string
The name of the application, must be unique within your account
Tags Dictionary<string, string>
Key-value map of tags for the Elastic Beanstalk Application. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
AppversionLifecycle ApplicationAppversionLifecycleArgs
Description string
Short description of the application
Name Changes to this property will trigger replacement. string
The name of the application, must be unique within your account
Tags map[string]string
Key-value map of tags for the Elastic Beanstalk Application. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
appversionLifecycle ApplicationAppversionLifecycle
description String
Short description of the application
name Changes to this property will trigger replacement. String
The name of the application, must be unique within your account
tags Map<String,String>
Key-value map of tags for the Elastic Beanstalk Application. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
appversionLifecycle ApplicationAppversionLifecycle
description string
Short description of the application
name Changes to this property will trigger replacement. string
The name of the application, must be unique within your account
tags {[key: string]: string}
Key-value map of tags for the Elastic Beanstalk Application. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
appversion_lifecycle ApplicationAppversionLifecycleArgs
description str
Short description of the application
name Changes to this property will trigger replacement. str
The name of the application, must be unique within your account
tags Mapping[str, str]
Key-value map of tags for the Elastic Beanstalk Application. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
appversionLifecycle Property Map
description String
Short description of the application
name Changes to this property will trigger replacement. String
The name of the application, must be unique within your account
tags Map<String>
Key-value map of tags for the Elastic Beanstalk Application. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

Outputs

All input properties are implicitly available as output properties. Additionally, the Application resource produces the following output properties:

Arn string
The ARN assigned by AWS for this Elastic Beanstalk Application.
Id string
The provider-assigned unique ID for this managed resource.
TagsAll Dictionary<string, string>
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

Arn string
The ARN assigned by AWS for this Elastic Beanstalk Application.
Id string
The provider-assigned unique ID for this managed resource.
TagsAll map[string]string
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

arn String
The ARN assigned by AWS for this Elastic Beanstalk Application.
id String
The provider-assigned unique ID for this managed resource.
tagsAll Map<String,String>
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

arn string
The ARN assigned by AWS for this Elastic Beanstalk Application.
id string
The provider-assigned unique ID for this managed resource.
tagsAll {[key: string]: string}
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

arn str
The ARN assigned by AWS for this Elastic Beanstalk Application.
id str
The provider-assigned unique ID for this managed resource.
tags_all Mapping[str, str]
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

arn String
The ARN assigned by AWS for this Elastic Beanstalk Application.
id String
The provider-assigned unique ID for this managed resource.
tagsAll Map<String>
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

Look up Existing Application Resource

Get an existing Application resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

public static get(name: string, id: Input<ID>, state?: ApplicationState, opts?: CustomResourceOptions): Application
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        appversion_lifecycle: Optional[ApplicationAppversionLifecycleArgs] = None,
        arn: Optional[str] = None,
        description: Optional[str] = None,
        name: Optional[str] = None,
        tags: Optional[Mapping[str, str]] = None,
        tags_all: Optional[Mapping[str, str]] = None) -> Application
func GetApplication(ctx *Context, name string, id IDInput, state *ApplicationState, opts ...ResourceOption) (*Application, error)
public static Application Get(string name, Input<string> id, ApplicationState? state, CustomResourceOptions? opts = null)
public static Application get(String name, Output<String> id, ApplicationState state, CustomResourceOptions options)
resources:  _:    type: aws:elasticbeanstalk:Application    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
AppversionLifecycle ApplicationAppversionLifecycle
Arn string
The ARN assigned by AWS for this Elastic Beanstalk Application.
Description string
Short description of the application
Name Changes to this property will trigger replacement. string
The name of the application, must be unique within your account
Tags Dictionary<string, string>
Key-value map of tags for the Elastic Beanstalk Application. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
TagsAll Dictionary<string, string>
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

AppversionLifecycle ApplicationAppversionLifecycleArgs
Arn string
The ARN assigned by AWS for this Elastic Beanstalk Application.
Description string
Short description of the application
Name Changes to this property will trigger replacement. string
The name of the application, must be unique within your account
Tags map[string]string
Key-value map of tags for the Elastic Beanstalk Application. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
TagsAll map[string]string
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

appversionLifecycle ApplicationAppversionLifecycle
arn String
The ARN assigned by AWS for this Elastic Beanstalk Application.
description String
Short description of the application
name Changes to this property will trigger replacement. String
The name of the application, must be unique within your account
tags Map<String,String>
Key-value map of tags for the Elastic Beanstalk Application. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
tagsAll Map<String,String>
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

appversionLifecycle ApplicationAppversionLifecycle
arn string
The ARN assigned by AWS for this Elastic Beanstalk Application.
description string
Short description of the application
name Changes to this property will trigger replacement. string
The name of the application, must be unique within your account
tags {[key: string]: string}
Key-value map of tags for the Elastic Beanstalk Application. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
tagsAll {[key: string]: string}
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

appversion_lifecycle ApplicationAppversionLifecycleArgs
arn str
The ARN assigned by AWS for this Elastic Beanstalk Application.
description str
Short description of the application
name Changes to this property will trigger replacement. str
The name of the application, must be unique within your account
tags Mapping[str, str]
Key-value map of tags for the Elastic Beanstalk Application. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
tags_all Mapping[str, str]
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

appversionLifecycle Property Map
arn String
The ARN assigned by AWS for this Elastic Beanstalk Application.
description String
Short description of the application
name Changes to this property will trigger replacement. String
The name of the application, must be unique within your account
tags Map<String>
Key-value map of tags for the Elastic Beanstalk Application. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
tagsAll Map<String>
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

Supporting Types

ApplicationAppversionLifecycle
, ApplicationAppversionLifecycleArgs

ServiceRole This property is required. string
The ARN of an IAM service role under which the application version is deleted. Elastic Beanstalk must have permission to assume this role.
DeleteSourceFromS3 bool
Set to true to delete a version's source bundle from S3 when the application version is deleted.
MaxAgeInDays int
The number of days to retain an application version ('max_age_in_days' and 'max_count' cannot be enabled simultaneously.).
MaxCount int
The maximum number of application versions to retain ('max_age_in_days' and 'max_count' cannot be enabled simultaneously.).
ServiceRole This property is required. string
The ARN of an IAM service role under which the application version is deleted. Elastic Beanstalk must have permission to assume this role.
DeleteSourceFromS3 bool
Set to true to delete a version's source bundle from S3 when the application version is deleted.
MaxAgeInDays int
The number of days to retain an application version ('max_age_in_days' and 'max_count' cannot be enabled simultaneously.).
MaxCount int
The maximum number of application versions to retain ('max_age_in_days' and 'max_count' cannot be enabled simultaneously.).
serviceRole This property is required. String
The ARN of an IAM service role under which the application version is deleted. Elastic Beanstalk must have permission to assume this role.
deleteSourceFromS3 Boolean
Set to true to delete a version's source bundle from S3 when the application version is deleted.
maxAgeInDays Integer
The number of days to retain an application version ('max_age_in_days' and 'max_count' cannot be enabled simultaneously.).
maxCount Integer
The maximum number of application versions to retain ('max_age_in_days' and 'max_count' cannot be enabled simultaneously.).
serviceRole This property is required. string
The ARN of an IAM service role under which the application version is deleted. Elastic Beanstalk must have permission to assume this role.
deleteSourceFromS3 boolean
Set to true to delete a version's source bundle from S3 when the application version is deleted.
maxAgeInDays number
The number of days to retain an application version ('max_age_in_days' and 'max_count' cannot be enabled simultaneously.).
maxCount number
The maximum number of application versions to retain ('max_age_in_days' and 'max_count' cannot be enabled simultaneously.).
service_role This property is required. str
The ARN of an IAM service role under which the application version is deleted. Elastic Beanstalk must have permission to assume this role.
delete_source_from_s3 bool
Set to true to delete a version's source bundle from S3 when the application version is deleted.
max_age_in_days int
The number of days to retain an application version ('max_age_in_days' and 'max_count' cannot be enabled simultaneously.).
max_count int
The maximum number of application versions to retain ('max_age_in_days' and 'max_count' cannot be enabled simultaneously.).
serviceRole This property is required. String
The ARN of an IAM service role under which the application version is deleted. Elastic Beanstalk must have permission to assume this role.
deleteSourceFromS3 Boolean
Set to true to delete a version's source bundle from S3 when the application version is deleted.
maxAgeInDays Number
The number of days to retain an application version ('max_age_in_days' and 'max_count' cannot be enabled simultaneously.).
maxCount Number
The maximum number of application versions to retain ('max_age_in_days' and 'max_count' cannot be enabled simultaneously.).

Import

Using pulumi import, import Elastic Beanstalk Applications using the name. For example:

$ pulumi import aws:elasticbeanstalk/application:Application tf_test tf-test-name
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
AWS Classic pulumi/pulumi-aws
License
Apache-2.0
Notes
This Pulumi package is based on the aws Terraform Provider.