This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| variable "aws_region" { | |
| default = "eu-west-1" | |
| } | |
| variable "domain" { | |
| default = "my_domain" | |
| } | |
| provider "aws" { | |
| region = "${var.aws_region}" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| image: "rust:latest" | |
| default: | |
| before_script: | |
| - rustc --version | |
| - cargo --version | |
| stages: | |
| - test |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| The following start script has been tested with SLES 12 SP2, AEM 6.3 and Java 8u161. | |
| ------------------------------------------------------------------------------------------------------------- | |
| cat << 'EOF' > /etc/systemd/system/aem.service | |
| [Unit] | |
| Description=Adobe Experience Manager | |
| After=network.target | |
| [Service] | |
| Type=forking |