Skip to content

Commit 6ee29f2

Browse files
committed
revamp eb
1 parent 22c4664 commit 6ee29f2

File tree

1 file changed

+20
-22
lines changed

1 file changed

+20
-22
lines changed

src/content/docs/aws/services/elasticbeanstalk.md

Lines changed: 20 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
---
22
title: "Elastic Beanstalk"
3-
linkTitle: "Elastic Beanstalk"
4-
description: >
5-
Get started with Elastic Beanstalk (EB) on LocalStack
3+
description: Get started with Elastic Beanstalk (EB) on LocalStack
64
tags: ["Ultimate"]
75
---
86

@@ -13,7 +11,7 @@ Elastic Beanstalk orchestrates various AWS services, including EC2, S3, SNS, and
1311
Elastic Beanstalk also supports various application environments, such as Java, .NET, Node.js, PHP, Python, Ruby, Go, and Docker.
1412

1513
LocalStack allows you to use the Elastic Beanstalk APIs in your local environment to create and manage applications, environments and versions.
16-
The supported APIs are available on our [API coverage page]({{< ref "coverage_elasticbeanstalk" >}}), which provides information on the extent of Elastic Beanstalk's integration with LocalStack.
14+
The supported APIs are available on our [API coverage page](), which provides information on the extent of Elastic Beanstalk's integration with LocalStack.
1715

1816
## Getting started
1917

@@ -27,10 +25,10 @@ We will demonstrate how to create an Elastic Beanstalk application and environme
2725
To create an Elastic Beanstalk application, you can use the [`CreateApplication`](https://docs.aws.amazon.com/elasticbeanstalk/latest/api/API_CreateApplication.html) API.
2826
Run the following command to create an application named `my-app`:
2927

30-
{{< command >}}
31-
$ awslocal elasticbeanstalk create-application \
28+
```bash
29+
awslocal elasticbeanstalk create-application \
3230
--application-name my-app
33-
{{< /command >}}
31+
```
3432

3533
The following output would be retrieved:
3634

@@ -47,21 +45,21 @@ The following output would be retrieved:
4745
You can also use the [`DescribeApplications`](https://docs.aws.amazon.com/elasticbeanstalk/latest/api/API_DescribeApplications.html) API to retrieve information about your application.
4846
Run the following command to retrieve information about the `my-app` application, we created earlier:
4947

50-
{{< command >}}
51-
$ awslocal elasticbeanstalk describe-applications \
48+
```bash
49+
awslocal elasticbeanstalk describe-applications \
5250
--application-names my-app
53-
{{< /command >}}
51+
```
5452

5553
### Create an environment
5654

5755
To create an Elastic Beanstalk environment, you can use the [`CreateEnvironment`](https://docs.aws.amazon.com/elasticbeanstalk/latest/api/API_CreateEnvironment.html) API.
5856
Run the following command to create an environment named `my-environment`:
5957

60-
{{< command >}}
61-
$ awslocal elasticbeanstalk create-environment \
58+
```bash
59+
awslocal elasticbeanstalk create-environment \
6260
--application-name my-app \
6361
--environment-name my-environment
64-
{{< /command >}}
62+
```
6563

6664
The following output would be retrieved:
6765

@@ -78,21 +76,21 @@ The following output would be retrieved:
7876
You can also use the [`DescribeEnvironments`](https://docs.aws.amazon.com/elasticbeanstalk/latest/api/API_DescribeEnvironments.html) API to retrieve information about your environment.
7977
Run the following command to retrieve information about the `my-environment` environment, we created earlier:
8078

81-
{{< command >}}
82-
$ awslocal elasticbeanstalk describe-environments \
79+
```bash
80+
awslocal elasticbeanstalk describe-environments \
8381
--environment-names my-environment
84-
{{< /command >}}
82+
```
8583

8684
### Create an application version
8785

8886
To create an Elastic Beanstalk application version, you can use the [`CreateApplicationVersion`](https://docs.aws.amazon.com/elasticbeanstalk/latest/api/API_CreateApplicationVersion.html) API.
8987
Run the following command to create an application version named `v1`:
9088

91-
{{< command >}}
92-
$ awslocal elasticbeanstalk create-application-version \
89+
```bash
90+
awslocal elasticbeanstalk create-application-version \
9391
--application-name my-app \
9492
--version-label v1
95-
{{< /command >}}
93+
```
9694

9795
The following output would be retrieved:
9896

@@ -110,10 +108,10 @@ The following output would be retrieved:
110108
You can also use the [`DescribeApplicationVersions`](https://docs.aws.amazon.com/elasticbeanstalk/latest/api/API_DescribeApplicationVersions.html) API to retrieve information about your application version.
111109
Run the following command to retrieve information about the `v1` application version, we created earlier:
112110

113-
{{< command >}}
114-
$ awslocal elasticbeanstalk describe-application-versions \
111+
```bash
112+
awslocal elasticbeanstalk describe-application-versions \
115113
--application-name my-app
116-
{{< /command >}}
114+
```
117115

118116
## Current Limitations
119117

0 commit comments

Comments
 (0)