Skip to content

Commit 73e721f

Browse files
committed
Add inputs prefix to workflow input usage
1 parent 588c7f3 commit 73e721f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/create-space.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ jobs:
1919
- name: Create file for space
2020
run : |
2121
cat > ${{ github.actor }}.software-engineer.space.tf << EOF
22-
module "${{ dns_prefix }}" {
22+
module "${{ inputs.dns_prefix }}" {
2323
source = "./modules/software-engineer-space"
2424
github_handle = "${{ github.actor }}"
25-
domain_prefix = "${{ dns_prefix }}"
25+
domain_prefix = "${{ inputs.dns_prefix }}"
2626
cloudflare_zone_id = cloudflare_zone.software-engineer-space.id
2727
2828
providers = {
@@ -36,7 +36,7 @@ jobs:
3636
git config user.name github-actions
3737
git config user.email [email protected]
3838
git add ${{ github.actor }}.software-engineer.space.tf
39-
git commit -am "Add space for ${{ github.actor }} as ${{ dns_prefix }}.software-engineer.space.tf"
39+
git commit -am "Add space for ${{ github.actor }} as ${{ inputs.dns_prefix }}.software-engineer.space.tf"
4040
git push
4141
- name: Run terraform
4242
run: |

0 commit comments

Comments
 (0)