Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix EC2 instance name #7

Merged
merged 3 commits into from
Aug 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 2 additions & 12 deletions docs/docs/setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,8 @@ OpenJDK 64-Bit Server VM (build 17.0.10+9, mixed mode)

### Installing Docker Engine

[Astraios][astraios] has [Docker-based integration tests][Docker-based integration tests];
it also supports [running template webserivce in Docker][astraios Dockerfile]. Docker can be installed by
following its [official instructions](https://docs.docker.com/desktop/install/mac-install/)
[Astraios][astraios] supports [running itself in Docker][astraios Dockerfile]. Docker can be installed by following its
[official instructions](https://docs.docker.com/desktop/install/mac-install/)

Getting Source Code
-------------------
Expand All @@ -75,15 +74,6 @@ IntelliJ settings. If IntelliJ is used for IDE, we may import these code style s
[Astraios-Project-intellij-code-style.xml][style config] file in the root of the repo. The setting for the
project will appear as a new Scheme named Astraios-Project under IDE's `Editor -> Code Style` section.

Modifying Templates
-------------------

- Update [endpoint package] accordingly

[Docker-based integration tests]: https://github.com/paion-data/astraios/blob/master/src/test/groovy/com/paiondata/astraios/DataServletITSpec.groovy

[endpoint package]: https://github.com/paion-data/astraios/blob/master/src/main/java/com/paiondata/astraios/application/ResourceConfig.java

[astraios]: https://github.com/paion-data/astraios
[astraios Dockerfile]: https://github.com/paion-data/astraios/blob/master/Dockerfile

Expand Down
2 changes: 1 addition & 1 deletion hashicorp/instances/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ resource "aws_instance" "astraios" {
ami = "${data.aws_ami.latest-astraios.id}"
instance_type = "t2.micro"
tags = {
Name = "ES2 Instance Name"
Name = "Paion Data Astraios"
}
security_groups = ["Paion Data Astraios"]

Expand Down
Loading