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

SCRUM-3426: set elasticbeanstalk new certificate configuration #62

Merged
merged 1 commit into from
Oct 27, 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
2 changes: 1 addition & 1 deletion .ebextensions/loadbalancer.config
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ option_settings:
# https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/environments-cfg-alb.html#environments-cfg-alb-namespaces

aws:elbv2:listener:443:
SSLCertificateArns: arn:aws:acm:us-east-1:100225593120:certificate/70263776-5e62-4454-9997-bb7e560d7c63
SSLCertificateArns: arn:aws:acm:us-east-1:100225593120:certificate/047a56a2-09dd-4857-9f28-32d23650d4da
Protocol: HTTPS
DefaultProcess: http
aws:elasticbeanstalk:environment:process:http:
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<quarkus.platform.artifact-id>quarkus-bom</quarkus.platform.artifact-id>
<quarkus.platform.group-id>io.quarkus.platform</quarkus.platform.group-id>
<quarkus.platform.version>3.4.3</quarkus.platform.version>
<quarkus.platform.version>3.5.0</quarkus.platform.version>
<surefire-plugin.version>3.0.0-M7</surefire-plugin.version>
</properties>

Expand Down
2 changes: 2 additions & 0 deletions src/main/java/org/alliancegenome/mati/entity/Identifier.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,14 @@

import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;

/** AGR identifier
* <a href="https://github.com/alliance-genome/agr_curation_schema/blob/862cff5c081573e5e86ffe1eca83aa50d625f37e/model/schema/core.yaml#L407">Identifier LinkML</a>
* */
@Data
@AllArgsConstructor
@NoArgsConstructor
public class Identifier {
private Long counter;
private String subdomain_code;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,15 @@

import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;


/** AGR range of identifiers
* <a href="https://github.com/alliance-genome/agr_curation_schema/blob/862cff5c081573e5e86ffe1eca83aa50d625f37e/model/schema/core.yaml#L414">IdentifierRange LinkML</a>
* */
@Data
@AllArgsConstructor
@NoArgsConstructor
public class IdentifiersRange {
private Identifier first;
private Identifier last;
Expand Down