{"id":22351480,"url":"https://github.com/garysassano/pulumi-aws-wordpress","last_synced_at":"2026-04-08T20:44:13.392Z","repository":{"id":153982174,"uuid":"609450591","full_name":"garysassano/pulumi-aws-wordpress","owner":"garysassano","description":"Pulumi project that deploys WordPress to AWS using ECS Fargate with RDS backend","archived":false,"fork":false,"pushed_at":"2024-07-14T19:29:06.000Z","size":14,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-07T19:56:26.459Z","etag":null,"topics":["aws","ecs","ecs-fargate","fargate","pulumi","pulumi-aws","python","rds","rds-mysql","wordpress"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/garysassano.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2023-03-04T07:53:01.000Z","updated_at":"2024-07-14T19:29:09.000Z","dependencies_parsed_at":"2024-07-14T20:46:44.693Z","dependency_job_id":null,"html_url":"https://github.com/garysassano/pulumi-aws-wordpress","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/garysassano/pulumi-aws-wordpress","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/garysassano%2Fpulumi-aws-wordpress","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/garysassano%2Fpulumi-aws-wordpress/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/garysassano%2Fpulumi-aws-wordpress/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/garysassano%2Fpulumi-aws-wordpress/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/garysassano","download_url":"https://codeload.github.com/garysassano/pulumi-aws-wordpress/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/garysassano%2Fpulumi-aws-wordpress/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31573788,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-08T14:31:17.711Z","status":"ssl_error","status_checked_at":"2026-04-08T14:31:17.202Z","response_time":54,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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","ecs","ecs-fargate","fargate","pulumi","pulumi-aws","python","rds","rds-mysql","wordpress"],"created_at":"2024-12-04T12:14:10.152Z","updated_at":"2026-04-08T20:44:13.364Z","avatar_url":"https://github.com/garysassano.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# pulumi-aws-wordpress\n\nPulumi project that deploys WordPress to AWS using ECS Fargate with RDS backend.\n\n## Resources Deployed\n\n```console\n     Type                                 Name                                 Plan       \n +   pulumi:pulumi:Stack                  pulumi-aws-wordpress-dev             create     \n +   ├─ custom:resource:VPC               wp-example-net                       create     \n +   │  ├─ aws:ec2:Vpc                    wp-example-net-vpc                   create     \n +   │  ├─ aws:ec2:InternetGateway        wp-example-net-igw                   create     \n +   │  ├─ aws:ec2:Subnet                 wp-example-net-subnet-eu-central-1a  create     \n +   │  ├─ aws:ec2:SecurityGroup          wp-example-net-rds-sg                create     \n +   │  ├─ aws:ec2:SecurityGroup          wp-example-net-fe-sg                 create     \n +   │  ├─ aws:ec2:Subnet                 wp-example-net-subnet-eu-central-1b  create     \n +   │  ├─ aws:ec2:RouteTable             wp-example-net-rt                    create     \n +   │  ├─ aws:ec2:RouteTableAssociation  vpc-route-table-assoc-eu-central-1a  create     \n +   │  └─ aws:ec2:RouteTableAssociation  vpc-route-table-assoc-eu-central-1b  create     \n +   ├─ random:index:RandomPassword       db_password                          create     \n +   ├─ custom:resource:Frontend          wp-example-fe                        create     \n +   │  ├─ aws:ecs:Cluster                wp-example-fe-ecs                    create     \n +   │  ├─ aws:iam:Role                   wp-example-fe-task-role              create     \n +   │  ├─ aws:lb:TargetGroup             wp-example-fe-app-tg                 create     \n +   │  ├─ aws:iam:RolePolicyAttachment   wp-example-fe-task-policy            create     \n +   │  ├─ aws:lb:LoadBalancer            wp-example-fe-alb                    create     \n +   │  ├─ aws:lb:Listener                wp-example-fe-listener               create     \n +   │  ├─ aws:ecs:TaskDefinition         wp-example-fe-app-task               create     \n +   │  └─ aws:ecs:Service                wp-example-fe-app-svc                create     \n +   └─ custom:resource:Backend           wp-example-be                        create     \n +      ├─ aws:rds:SubnetGroup            wp-example-be-sng                    create     \n +      └─ aws:rds:Instance               wp-example-be-rds                    create     \n ```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgarysassano%2Fpulumi-aws-wordpress","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgarysassano%2Fpulumi-aws-wordpress","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgarysassano%2Fpulumi-aws-wordpress/lists"}