{"id":37854304,"url":"https://github.com/cloudreach/sceptre-wordpress-example","last_synced_at":"2026-01-16T16:24:22.102Z","repository":{"id":47979652,"uuid":"87804483","full_name":"cloudreach/sceptre-wordpress-example","owner":"cloudreach","description":"sceptre wordpress configured HA mode in AWS","archived":false,"fork":false,"pushed_at":"2021-08-11T08:48:27.000Z","size":109,"stargazers_count":10,"open_issues_count":0,"forks_count":9,"subscribers_count":16,"default_branch":"master","last_synced_at":"2024-04-21T17:23:27.858Z","etag":null,"topics":["aws","cloud","cloudformation","devops","efs","sceptre","troposphere","wordpress"],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/cloudreach.png","metadata":{"files":{"readme":"README.rst","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-04-10T11:45:31.000Z","updated_at":"2023-11-17T03:22:01.000Z","dependencies_parsed_at":"2022-08-12T15:50:24.407Z","dependency_job_id":null,"html_url":"https://github.com/cloudreach/sceptre-wordpress-example","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/cloudreach/sceptre-wordpress-example","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudreach%2Fsceptre-wordpress-example","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudreach%2Fsceptre-wordpress-example/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudreach%2Fsceptre-wordpress-example/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudreach%2Fsceptre-wordpress-example/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cloudreach","download_url":"https://codeload.github.com/cloudreach/sceptre-wordpress-example/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudreach%2Fsceptre-wordpress-example/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28479782,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-16T11:59:17.896Z","status":"ssl_error","status_checked_at":"2026-01-16T11:55:55.838Z","response_time":107,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["aws","cloud","cloudformation","devops","efs","sceptre","troposphere","wordpress"],"created_at":"2026-01-16T16:24:22.020Z","updated_at":"2026-01-16T16:24:22.093Z","avatar_url":"https://github.com/cloudreach.png","language":"Python","readme":"=======\nSceptre Wordpress\n=======\n\nMeetup Munich\n-----\n\nSceptre is a tool to drive AWS `CloudFormation \u003chttps://aws.amazon.com/cloudformation/\u003e`_. It automates away some of the more mundane, repetitive and error-prone tasks, allowing you to concentrate on building better infrastructure.\n\nSceptre's source code can be found `here \u003chttps://github.com/cloudreach/sceptre\u003e`_.\n\nFeatures:\n\n- Code reusability by separating a stack's template and its configuration\n- Support for templates written in JSON, YAML or Python DSLs such as Troposphere\n- Dependency resolution by passing of stack outputs to parameters of dependent stacks\n- Environment support by bundling related stacks into logical groups (e.g. dev and prod)\n- Environment-level commands, such as creating multiple stacks with a single command\n- Fast, highly parallelised builds\n- Built in support for working with stacks in multiple AWS accounts\n- Infrastructure visibility with meta-operations such as stack querying protection\n- Support for inserting dynamic values in templates via customisable resolvers\n- Support for running arbitrary code as hooks before/after stack builds\n\n\nCode\n-------\n\nSceptre organises stacks into environments. Each stack is represented by a YAML configuration file stored in a directory which represents the environment. Here, we have two environments, ``prod`` and ``dev`` ::\n\n  $ tree\n  .\n  ├── LICENSE\n  ├── NOTICE\n  ├── README.rst\n  ├── config\n  │   ├── config.yaml\n  │   ├── dev\n  │   │   ├── config.yaml\n  │   │   ├── efs.yaml\n  │   │   ├── rds.yaml\n  │   │   ├── role.yaml\n  │   │   ├── security-groups.yaml\n  │   │   ├── vpc.yaml\n  │   │   └── wordpress.yaml\n  │   └── prod\n  │       ├── config.yaml\n  │       ├── efs.yaml\n  │       ├── rds.yaml\n  │       ├── security-groups.yaml\n  │       ├── vpc.yaml\n  │       └── wordpress.yaml\n  └── src\n      ├── base.py\n      ├── constants.py\n      ├── efs.py\n      ├── rds.py\n      ├── role.py\n      ├── security_groups.py\n      ├── vpc.py\n      └── wordpress.py\n\n\nDiagram\n-------\n\n.. image:: diagram.jpg\n  :align: right\n\n\nInstall\n-------\n\n::\n\n  $ pip install sceptre\n\nMore information on installing sceptre can be found in our `Installation Guide \u003chttp://sceptre.cloudreach.com/docs/installation.html\u003e`_.\n\n\nHow to start\n-----\n\nSceptre can be used from the CLI, or imported as a Python package.::\n\n  $ git clone git@github.com:cloudreach/sceptre-wordpress-example.git\n  $ cd sceptre-wordpress-example\n\nBe sure your `AWS credential \u003chttp://docs.aws.amazon.com/cli/latest/userguide/cli-chap-getting-started.html#cli-quick-configuration\u003e`__ are properly configured\n\nHow to deploy ``dev`` and ``prod`` ::\n\n  $ sceptre launch dev\n  $ sceptre launch prod\n\nHow to apply a change-set on ``dev`` for ``wordpress`` stack ::\n\n  $ sceptre create dev wordpress\n  $ sceptre execute dev wordpress\n\n\n\n\nTutorial and Documentation\n--------------------------\n\n- `Get Started \u003chttp://sceptre.cloudreach.com/docs/get_started.html\u003e`_\n- `Documentation \u003chttp://sceptre.cloudreach.com/docs/\u003e`__\n\n\nLicense\n-------------\n\n**sceptre** is licensed under the `Apache Software License 2.0 \u003cLICENSE\u003e`_.\n\nThanks\n-------------\n\n`Intelligent Cloud Adoption. \u003chttps://www.cloudreach.com/\u003e`_\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcloudreach%2Fsceptre-wordpress-example","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcloudreach%2Fsceptre-wordpress-example","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcloudreach%2Fsceptre-wordpress-example/lists"}