Skip to content

Commit 2b492aa

Browse files
committed
Top level?
1 parent 3faae66 commit 2b492aa

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

.github/workflows/copilot-setup-steps.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -11,27 +11,27 @@ on:
1111
paths:
1212
- .github/workflows/copilot-setup-steps.yml
1313

14+
env:
15+
ELASTICSEARCH_ENDPOINTS: "http://localhost:9200"
16+
ELASTICSEARCH_USERNAME: "elastic"
17+
ELASTICSEARCH_PASSWORD: password
18+
KIBANA_ENDPOINT: "http://localhost:5601"
19+
KIBANA_USERNAME: "elastic"
20+
KIBANA_PASSWORD: password
21+
KIBANA_SYSTEM_USERNAME: kibana_system
22+
KIBANA_SYSTEM_PASSWORD: password
23+
TF_ACC: "1"
24+
STACK_VERSION: 9.0.3
25+
1426
jobs:
1527
# The job MUST be called `copilot-setup-steps` or it will not be picked up by Copilot.
1628
copilot-setup-steps:
1729
runs-on: ubuntu-latest
18-
1930
# Set the permissions to the lowest permissions possible needed for your steps.
2031
# Copilot will be given its own token for its operations.
2132
permissions:
2233
# If you want to clone the repository as part of your setup steps, for example to install dependencies, you'll need the `contents: read` permission. If you don't clone the repository in your setup steps, Copilot will do this for you automatically after the steps complete.
2334
contents: read
24-
env:
25-
ELASTICSEARCH_ENDPOINTS: "http://localhost:9200"
26-
ELASTICSEARCH_USERNAME: "elastic"
27-
ELASTICSEARCH_PASSWORD: password
28-
KIBANA_ENDPOINT: "http://localhost:5601"
29-
KIBANA_USERNAME: "elastic"
30-
KIBANA_PASSWORD: password
31-
KIBANA_SYSTEM_USERNAME: kibana_system
32-
KIBANA_SYSTEM_PASSWORD: password
33-
TF_ACC: "1"
34-
STACK_VERSION: 9.0.3
3535
services:
3636
elasticsearch:
3737
image: docker.elastic.co/elasticsearch/elasticsearch:${{ env.STACK_VERSION }}

0 commit comments

Comments
 (0)