Skip to content

Latest commit

 

History

History
87 lines (64 loc) · 1.39 KB

aws_elastic_beanstalk_application.md

File metadata and controls

87 lines (64 loc) · 1.39 KB

aws_elastic_beanstalk_application

back

Index

Terraform

terraform {
  required_providers {
    aws = ">= 3.35.0"
  }
}

top

Example Usage

module "aws_elastic_beanstalk_application" {
  source = "./modules/aws/d/aws_elastic_beanstalk_application"

  # name - (required) is a type of string
  name = null
}

top

Variables

variable "name" {
  description = "(required)"
  type        = string
}

top

Datasource

data "aws_elastic_beanstalk_application" "this" {
  # name - (required) is a type of string
  name = var.name
}

top

Outputs

output "appversion_lifecycle" {
  description = "returns a list of object"
  value       = data.aws_elastic_beanstalk_application.this.appversion_lifecycle
}

output "arn" {
  description = "returns a string"
  value       = data.aws_elastic_beanstalk_application.this.arn
}

output "description" {
  description = "returns a string"
  value       = data.aws_elastic_beanstalk_application.this.description
}

output "id" {
  description = "returns a string"
  value       = data.aws_elastic_beanstalk_application.this.id
}

output "this" {
  value = aws_elastic_beanstalk_application.this
}

top