1. Packages
  2. AWS Classic
  3. API Docs
  4. elasticbeanstalk
  5. Application

Try AWS Native preview for resources not in the classic version.

AWS Classic v5.41.0 published on Monday, May 15, 2023 by Pulumi

aws.elasticbeanstalk.Application

Explore with Pulumi AI

aws logo

Try AWS Native preview for resources not in the classic version.

AWS Classic v5.41.0 published on Monday, May 15, 2023 by Pulumi

    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

    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()
        {
            Description = "tf-test-desc",
            AppversionLifecycle = new Aws.ElasticBeanstalk.Inputs.ApplicationAppversionLifecycleArgs
            {
                ServiceRole = aws_iam_role.Beanstalk_service.Arn,
                MaxCount = 128,
                DeleteSourceFromS3 = true,
            },
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-aws/sdk/v5/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{
    			Description: pulumi.String("tf-test-desc"),
    			AppversionLifecycle: &elasticbeanstalk.ApplicationAppversionLifecycleArgs{
    				ServiceRole:        pulumi.Any(aws_iam_role.Beanstalk_service.Arn),
    				MaxCount:           pulumi.Int(128),
    				DeleteSourceFromS3: pulumi.Bool(true),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    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()        
                .description("tf-test-desc")
                .appversionLifecycle(ApplicationAppversionLifecycleArgs.builder()
                    .serviceRole(aws_iam_role.beanstalk_service().arn())
                    .maxCount(128)
                    .deleteSourceFromS3(true)
                    .build())
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_aws as aws
    
    tftest = aws.elasticbeanstalk.Application("tftest",
        description="tf-test-desc",
        appversion_lifecycle=aws.elasticbeanstalk.ApplicationAppversionLifecycleArgs(
            service_role=aws_iam_role["beanstalk_service"]["arn"],
            max_count=128,
            delete_source_from_s3=True,
        ))
    
    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const tftest = new aws.elasticbeanstalk.Application("tftest", {
        description: "tf-test-desc",
        appversionLifecycle: {
            serviceRole: aws_iam_role.beanstalk_service.arn,
            maxCount: 128,
            deleteSourceFromS3: true,
        },
    });
    
    resources:
      tftest:
        type: aws:elasticbeanstalk:Application
        properties:
          description: tf-test-desc
          appversionLifecycle:
            serviceRole: ${aws_iam_role.beanstalk_service.arn}
            maxCount: 128
            deleteSourceFromS3: true
    

    Create Application Resource

    new Application(name: string, args?: ApplicationArgs, opts?: CustomResourceOptions);
    @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)
    @overload
    def Application(resource_name: str,
                    args: Optional[ApplicationArgs] = None,
                    opts: Optional[ResourceOptions] = 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.
    
    
    name 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 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 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 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 String
    The unique name of the resource.
    args ApplicationArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    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

    The Application resource accepts the following input properties:

    AppversionLifecycle ApplicationAppversionLifecycleArgs
    Description string

    Short description of the application

    Name 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 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 ApplicationAppversionLifecycleArgs
    description String

    Short description of the application

    name 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 ApplicationAppversionLifecycleArgs
    description string

    Short description of the application

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

    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.

    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.

    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.

    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.

    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.

    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)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    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
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    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
    The unique name of the resulting resource.
    id
    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
    The unique name of the resulting resource.
    id
    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 ApplicationAppversionLifecycleArgs
    Arn string

    The ARN assigned by AWS for this Elastic Beanstalk Application.

    Description string

    Short description of the application

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

    AppversionLifecycle ApplicationAppversionLifecycleArgs
    Arn string

    The ARN assigned by AWS for this Elastic Beanstalk Application.

    Description string

    Short description of the application

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

    appversionLifecycle ApplicationAppversionLifecycleArgs
    arn String

    The ARN assigned by AWS for this Elastic Beanstalk Application.

    description String

    Short description of the application

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

    appversionLifecycle ApplicationAppversionLifecycleArgs
    arn string

    The ARN assigned by AWS for this Elastic Beanstalk Application.

    description string

    Short description of the application

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

    appversion_lifecycle ApplicationAppversionLifecycleArgs
    arn str

    The ARN assigned by AWS for this Elastic Beanstalk Application.

    description str

    Short description of the application

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

    appversionLifecycle Property Map
    arn String

    The ARN assigned by AWS for this Elastic Beanstalk Application.

    description String

    Short description of the application

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

    Supporting Types

    ApplicationAppversionLifecycle

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

    Elastic Beanstalk Applications can be imported using the name, e.g.,

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

    Package Details

    Repository
    AWS Classic pulumi/pulumi-aws
    License
    Apache-2.0
    Notes

    This Pulumi package is based on the aws Terraform Provider.

    aws logo

    Try AWS Native preview for resources not in the classic version.

    AWS Classic v5.41.0 published on Monday, May 15, 2023 by Pulumi