You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/content/docs/aws/services/elasticbeanstalk.md
+20-22Lines changed: 20 additions & 22 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,6 @@
1
1
---
2
2
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
6
4
tags: ["Ultimate"]
7
5
---
8
6
@@ -13,7 +11,7 @@ Elastic Beanstalk orchestrates various AWS services, including EC2, S3, SNS, and
13
11
Elastic Beanstalk also supports various application environments, such as Java, .NET, Node.js, PHP, Python, Ruby, Go, and Docker.
14
12
15
13
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.
17
15
18
16
## Getting started
19
17
@@ -27,10 +25,10 @@ We will demonstrate how to create an Elastic Beanstalk application and environme
27
25
To create an Elastic Beanstalk application, you can use the [`CreateApplication`](https://docs.aws.amazon.com/elasticbeanstalk/latest/api/API_CreateApplication.html) API.
28
26
Run the following command to create an application named `my-app`:
29
27
30
-
{{< command >}}
31
-
$ awslocal elasticbeanstalk create-application \
28
+
```bash
29
+
awslocal elasticbeanstalk create-application \
32
30
--application-name my-app
33
-
{{< /command >}}
31
+
```
34
32
35
33
The following output would be retrieved:
36
34
@@ -47,21 +45,21 @@ The following output would be retrieved:
47
45
You can also use the [`DescribeApplications`](https://docs.aws.amazon.com/elasticbeanstalk/latest/api/API_DescribeApplications.html) API to retrieve information about your application.
48
46
Run the following command to retrieve information about the `my-app` application, we created earlier:
To create an Elastic Beanstalk environment, you can use the [`CreateEnvironment`](https://docs.aws.amazon.com/elasticbeanstalk/latest/api/API_CreateEnvironment.html) API.
58
56
Run the following command to create an environment named `my-environment`:
59
57
60
-
{{< command >}}
61
-
$ awslocal elasticbeanstalk create-environment \
58
+
```bash
59
+
awslocal elasticbeanstalk create-environment \
62
60
--application-name my-app \
63
61
--environment-name my-environment
64
-
{{< /command >}}
62
+
```
65
63
66
64
The following output would be retrieved:
67
65
@@ -78,21 +76,21 @@ The following output would be retrieved:
78
76
You can also use the [`DescribeEnvironments`](https://docs.aws.amazon.com/elasticbeanstalk/latest/api/API_DescribeEnvironments.html) API to retrieve information about your environment.
79
77
Run the following command to retrieve information about the `my-environment` environment, we created earlier:
To create an Elastic Beanstalk application version, you can use the [`CreateApplicationVersion`](https://docs.aws.amazon.com/elasticbeanstalk/latest/api/API_CreateApplicationVersion.html) API.
89
87
Run the following command to create an application version named `v1`:
@@ -110,10 +108,10 @@ The following output would be retrieved:
110
108
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.
111
109
Run the following command to retrieve information about the `v1` application version, we created earlier:
0 commit comments