https://github.com/tubone24/moodle-ami
Creating Moodle Server by Packer with Ansible and Serverspec.
https://github.com/tubone24/moodle-ami
ansible aws moodle packer serverspec
Last synced: 2 months ago
JSON representation
Creating Moodle Server by Packer with Ansible and Serverspec.
- Host: GitHub
- URL: https://github.com/tubone24/moodle-ami
- Owner: tubone24
- License: mit
- Created: 2019-07-29T13:57:01.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-12-15T11:51:29.000Z (over 1 year ago)
- Last Synced: 2024-12-25T17:12:37.482Z (4 months ago)
- Topics: ansible, aws, moodle, packer, serverspec
- Language: Ruby
- Size: 41.9 MB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Moodle AMI

Moodle Ami repository used by AWS Training
## What is this repo?
[Moodle](https://moodle.org/?lang=ja) is a Learning Platform or course management system.
This repo is creating Moodle Server by [Packer](https://www.packer.io/) with some tools below.
* Provisioned by [Ansible](https://www.ansible.com/)
* Check Provisioned Server by [Serverspec](https://serverspec.org/)## Version
* Moodle 3.4.2
## Preconditions
* Install [Homebrew](https://brew.sh/index_ja.html)
* For execution locally
* virtualbox (5.1.22 or more)
* vagrant (1.9.7 or more)
* sahara (0.0.17 or more)
* install command `vagrant plugin install sahara`
* vbguest(0.15.1 or more)
* install command `vagrant plugin install vbguest`
* ruby 2.4.0 or more
* use `rbenv` (recommend)
* bundler
* execute `bundle update` (recommend)## Installation
* install packer
```
brew install packer
packer --version
> 1.0.0
```* install aws-cli
```
brew install awscli
aws --version
> aws-cli/1.11.100 Python/2.7.6 Darwin/14.4.0 botocore/1.5.63
```* install ansible
```
brew install ansible
ansible --version
> ansible 2.3.1.0
```## Setup MySQL Password
* Mysql Pass includes (packer/ansible/roles/moodle/vars/main.yml)
```
mysql_root_password: passWord <= FixME
```* Also Change serverspec (packer/serverspec/spec/properties.yml)
```
aws-training:
:user: aws-training
:uid: 5000
:group: aws-training
:gid: 5000
:db_passwd: passWord <= FixME
```## Execution
### Execute locally
* initialize vagrant
```
make init-vagrant
```if error was occured, run the command below.
`vagrant vbguest && vagrant up && vagrant sandbox on`
* test ansible
```
make test-local TARGET=moodle
```if errors, run the command below.(ex. SSH timeout)
`vagrant up --provision && vagrant sandbox on`### Execute on server
* get environment key-pair
```
make get-keypair
```* validate file
```
make validate TARGET=moodle
```* create AMI for moodle
```
make create-ami TARGET=moodle
```