diff --git a/README.md b/README.md index 109d32a..ded9849 100644 --- a/README.md +++ b/README.md @@ -10,10 +10,13 @@ details change in the DN or the DN cannot be constructed due to missing data, a Because of this quirk, this is a two-step apply. The first step creates the IAM role and creates an LDIF file in `setup/{role-name}.ldif`. It uses the presence of this file to create the LDAP object in the second step. Example: +1. Step 1, creates role and null resource ```console -# step 1, creates role and null resource % terraform apply -target=module.myrole -# step 2, creates ldap object +``` + +2. Step 2, creates ldap object +```console % terraform apply -target=module.myrole ``` diff --git a/main.tf b/main.tf index 8db48e6..11a5892 100644 --- a/main.tf +++ b/main.tf @@ -11,10 +11,13 @@ * Because of this quirk, this is a two-step apply. The first step creates the IAM role and creates an LDIF file in * `setup/{role-name}.ldif`. It uses the presence of this file to create the LDAP object in the second step. Example: * +* 1. Step 1, creates role and null resource * ```console -* # step 1, creates role and null resource * % terraform apply -target=module.myrole -* # step 2, creates ldap object +* ``` +* +* 2. Step 2, creates ldap object +* ```console * % terraform apply -target=module.myrole * ``` *