Skip to content

Commit ab8e7d4

Browse files
committed
Merge branch 'main' of github.com:stackql/stackql-deploy-demo
2 parents 706370b + dd386e2 commit ab8e7d4

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

aws-stack/README.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,15 @@ see the following links for more information on `stackql`, `stackql-deploy` and
1111

1212
## Overview
1313

14-
__`stackql-deploy`__ is a stateless, declarative, SQL driven Infrastructure-as-Code (IaC) framework. There is no state file required as the current state is assessed for each resource at runtime. __`stackql-deploy`__ is capable of provisioning, deprovisioning and testing a stack which can include resources across different providers, like a stack spanning `aws` and `azure` for example.
14+
**`stackql-deploy`** is a stateless, declarative, SQL driven Infrastructure-as-Code (IaC) framework. There is no state file required as the current state is assessed for each resource at runtime. **`stackql-deploy`** is capable of provisioning, deprovisioning and testing a stack which can include resources across different providers, like a stack spanning `aws` and `azure` for example.
1515

1616
## Prerequisites
1717

18-
This example requires `stackql-deploy` to be installed using __`pip install stackql-deploy`__. The host used to run `stackql-deploy` needs the necessary environment variables set to authenticate to your specific provider, in the case of the `aws` provider, `AWS_ACCESS_KEY_ID`, `AWS_SECRET_ACCESS_KEY` and optionally `AWS_SESSION_TOKEN` must be set, for more information on authentication to `aws` see the [`aws` provider documentation](https://aws.stackql.io/providers/aws).
18+
This example requires `stackql-deploy` to be installed using **`pip install stackql-deploy`**. The host used to run `stackql-deploy` needs the necessary environment variables set to authenticate to your specific provider, in the case of the `aws` provider, `AWS_ACCESS_KEY_ID`, `AWS_SECRET_ACCESS_KEY` and optionally `AWS_SESSION_TOKEN` must be set, for more information on authentication to `aws` see the [`aws` provider documentation](https://aws.stackql.io/providers/aws).
1919

20-
> __Note for macOS users__
21-
> to install `stackql-deploy` in a virtual environment (which may be necessary on __macOS__), use the following:
20+
> **Note for macOS users**
21+
> to install `stackql-deploy` in a virtual environment (which may be necessary on **macOS**), use the following:
22+
>
2223
> ```bash
2324
> python3 -m venv myenv
2425
> source myenv/bin/activate
@@ -27,13 +28,13 @@ This example requires `stackql-deploy` to be installed using __`pip install stac
2728
2829
## Usage
2930
30-
Adjust the values in the [__`stackql_manifest.yml`__](stackql_manifest.yml) file if desired. The [__`stackql_manifest.yml`__](stackql_manifest.yml) file contains resource configuration variables to support multiple deployment environments, these will be used for `stackql` queries in the `resources` and `resources` folders.
31+
Adjust the values in the [**`stackql_manifest.yml`**](stackql_manifest.yml) file if desired. The [**`stackql_manifest.yml`**](stackql_manifest.yml) file contains resource configuration variables to support multiple deployment environments, these will be used for `stackql` queries in the `resources` and `resources` folders.
3132
3233
The syntax for the `stackql-deploy` command is as follows:
3334
3435
```bash
3536
stackql-deploy { build | test | teardown } { stack-directory } { deployment environment} [ optional flags ]
36-
```
37+
```
3738
3839
### Deploying a stack
3940
@@ -72,4 +73,4 @@ To destroy or deprovision all resources in a stack for our `dev` deployment exam
7273
stackql-deploy teardown \
7374
aws-stack dev \
7475
-e AWS_REGION=us-east-1
75-
```
76+
```

0 commit comments

Comments
 (0)