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: lib/indy/README.md
+26-21Lines changed: 26 additions & 21 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -85,24 +85,24 @@ When running on a Mac, set the following environment variables.
85
85
##### Preparing for Ansible
86
86
87
87
- Create a Python virtual environment and install ansible
88
-
```
89
-
cd ansible
90
-
python3 -m venv venv
91
-
source ./venv/bin/activate
88
+
```bash
89
+
cd ansible
90
+
python3 -m venv venv
91
+
source ./venv/bin/activate
92
92
```
93
93
94
-
```
95
-
pip install -r requirements.txt
94
+
```bash
95
+
pip install -r requirements.txt
96
96
```
97
97
98
98
##### Describe instance information to be built in inventory.yml
99
99
100
100
- Create an inventory file containing information on the EC2 instance that will build the environment. Enter the instance ID described in the CDK output results in the settings column for each node. The value of `indyNetworkStack.ansibleFileTransferBucketName` described in CDK output results is inputted to `ansible_aws_ssm_bucket_name`. When Ansible transfers files to the target host, the Amazon Simple Storage Service (Amazon S3) bucket specified here is used.
-Use ansible's `command` module to check the cloud-init status was done.
156
+
-Before proceeding with configuring Indy, we need to make sure the initialization scripts are finished. To check their stats, use ansible's `command` module. If the check shows cloud-init is not finished wait and try again in 5-10 minutes until status was done.
157
157
158
-
```
159
-
$ ansible -m command all -i inventory/inventory.yml -a "cloud-init status --wait"
158
+
```bash
159
+
ansible -m command all -i inventory/inventory.yml -a "cloud-init status --wait"
0 commit comments