Skip to content

Commit 8bf4bf8

Browse files
committed
file renames
1 parent d2bc3d9 commit 8bf4bf8

File tree

4 files changed

+20
-22
lines changed

4 files changed

+20
-22
lines changed
File renamed without changes.
File renamed without changes.

src/content/docs/aws/services/app-config.md renamed to src/content/docs/aws/services/appconfig.md

Lines changed: 20 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
---
22
title: "AppConfig"
3-
linkTitle: "AppConfig"
43
description: Get started with AppConfig on LocalStack
54
tags: ["Base"]
65
---
@@ -10,7 +9,7 @@ AppConfig offers centralized management of configuration data and the ability to
109
It allows you to avoid deploying the service repeatedly for smaller changes, enables controlled deployments to applications and includes built-in validation checks & monitoring.
1110

1211
LocalStack allows you to use the AppConfig APIs in your local environment to define configurations for different environments and deploy them to your applications as needed.
13-
The supported APIs are available on our [API coverage page]({{< ref "coverage_appconfig" >}}), which provides information on the extent of AppConfig's integration with LocalStack.
12+
The supported APIs are available on our [API coverage page](), which provides information on the extent of AppConfig's integration with LocalStack.
1413

1514
## Getting started
1615

@@ -25,11 +24,11 @@ You can create an AppConfig application using the [`CreateApplication`](https://
2524
The application is a folder/directory that contains the configuration data for your specific application.
2625
The following command creates an application named `my-app`:
2726

28-
{{< command >}}
29-
$ awslocal appconfig create-application \
27+
```bash
28+
awslocal appconfig create-application \
3029
--name my-app \
3130
--description "My application"
32-
{{< /command >}}
31+
```
3332

3433
The following output would be retrieved:
3534

@@ -45,12 +44,12 @@ You can now create an AppConfig environment for your application using the [`Cre
4544
An environment consists of the deployment group of your AppConfig applications.
4645
The following command creates an environment named `my-app-env`:
4746

48-
{{< command >}}
49-
$ awslocal appconfig create-environment \
47+
```bash
48+
awslocal appconfig create-environment \
5049
--application-id 400c285 \
5150
--name my-app-env \
5251
--description "My application environment"
53-
{{< /command >}}
52+
```
5453

5554
Replace the `application-id` with the ID of the application you created in the previous step.
5655
The following output would be retrieved:
@@ -71,13 +70,13 @@ You can create an AppConfig configuration profile using the [`CreateConfiguratio
7170
A configuration profile contains for the configurations of your AppConfig applications.
7271
The following command creates a configuration profile named `my-app-config`:
7372

74-
{{< command >}}
75-
$ awslocal appconfig create-configuration-profile \
73+
```bash
74+
awslocal appconfig create-configuration-profile \
7675
--application-id 400c285 \
7776
--name my-app-config \
7877
--location-uri hosted \
7978
--type AWS.AppConfig.FeatureFlags
80-
{{< /command >}}
79+
```
8180

8281
The following output would be retrieved:
8382

@@ -108,14 +107,14 @@ Create a file named `feature-flag-config.json` with the following content:
108107
You can now use the [`CreateHostedConfigurationVersion`](https://docs.aws.amazon.com/appconfig/latest/APIReference/API_CreateHostedConfigurationVersion.html) API to save your feature flag configuration data to AppConfig.
109108
The following command creates a hosted configuration version for the configuration profile you created in the previous step:
110109

111-
{{< command >}}
112-
$ awslocal appconfig create-hosted-configuration-version \
110+
```bash
111+
awslocal appconfig create-hosted-configuration-version \
113112
--application-id 400c285 \
114113
--configuration-profile-id 7d748f9 \
115114
--content-type "application/json" \
116115
--content file://feature-flag-config.json \
117116
configuration-data.json
118-
{{< /command >}}
117+
```
119118

120119
The following output would be retrieved:
121120

@@ -134,13 +133,13 @@ You can now create an AppConfig deployment strategy using the [`CreateDeployment
134133
A deployment strategy defines important criteria for rolling out your configuration to the target environment.
135134
The following command creates a deployment strategy named `my-app-deployment-strategy`:
136135

137-
{{< command >}}
138-
$ awslocal appconfig create-deployment-strategy \
136+
```bash
137+
awslocal appconfig create-deployment-strategy \
139138
--name my-app-deployment-strategy \
140139
--description "My application deployment strategy" \
141140
--deployment-duration-in-minutes 10 \
142141
--growth-factor 1.0
143-
{{< /command >}}
142+
```
144143

145144
The following output would be retrieved:
146145

@@ -157,15 +156,15 @@ The following output would be retrieved:
157156
You can now use the [`StartDeployment`](https://docs.aws.amazon.com/appconfig/latest/APIReference/API_StartDeployment.html) API to deploy the configuration.
158157
The following command deploys the configuration to the environment you created in the previous step:
159158

160-
{{< command >}}
161-
$ awslocal appconfig start-deployment \
159+
```bash
160+
awslocal appconfig start-deployment \
162161
--application-id 400c285 \
163162
--environment-id 3695ea3 \
164163
--deployment-strategy-id f2f2225 \
165164
--configuration-profile-id 7d748f9 \
166165
--configuration-version 1 \
167166
--description "My application deployment"
168-
{{< /command >}}
167+
```
169168

170169
The following output would be retrieved:
171170

@@ -202,8 +201,7 @@ The following output would be retrieved:
202201
The LocalStack Web Application provides a Resource Browser for managing AppConfig applications.
203202
You can access the Resource Browser by opening the LocalStack Web Application in your browser, navigating to the **Resource Browser** section, and then clicking on **AppConfig** under the **Developer Tools** section.
204203

205-
<img src="appconfig-resource-browser.png" alt="AppConfig Resource Browser" title="AppConfig Resource Browser" width="900" />
206-
<br><br>
204+
![AppConfig Resource Browser](/images/aws/appconfig-resource-browser.png)
207205

208206
The Resource Browser allows you to perform the following actions:
209207

0 commit comments

Comments
 (0)