https://github.com/zenml-io/terraform-aws-remote-state
Terraform module to create remote state backend for AWS provider
https://github.com/zenml-io/terraform-aws-remote-state
aws remote-state terraform terraform-module
Last synced: about 2 months ago
JSON representation
Terraform module to create remote state backend for AWS provider
- Host: GitHub
- URL: https://github.com/zenml-io/terraform-aws-remote-state
- Owner: zenml-io
- License: apache-2.0
- Created: 2023-09-27T15:23:30.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-10-24T20:36:55.000Z (over 2 years ago)
- Last Synced: 2026-01-13T17:23:48.360Z (5 months ago)
- Topics: aws, remote-state, terraform, terraform-module
- Language: HCL
- Homepage: https://registry.terraform.io/modules/zenml-io/remote-state/aws/latest
- Size: 22.5 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# AWS Remote State S3 Bucket module
Terraform module which creates remote state bucket that can be used as backend
for Terraform AWS provider.
These features are supported:
- region-specific bucket
- custom bucket naming
- specify versioning policy
- specify whether to force destroy or not
- apply custom bucket tags
- block public access to bucket
## Usage
```hcl
module "aws-remote-state" {
source = "zenml-io/remote-state/aws"
# We recommend pinning every module to a specific version
# version = "x.x.x"
region = var.region
bucket_name = var.bucket_name
tags = {
env = "dev"
managed-by = "terraform"
}
}
```
Use this with an AWS provider and this will spin up a bucket you can use as a
remote state Terraform backend.
## Help
Got a question about usage or extending the module? [File a GitHub issue](https://github.com/zenml-io/terraform-aws-remote-state/issues/new) or [join
our Slack Community](https://zenml.io/slack-invite/).
[](https://zenml.io/)
## Contributing
If you are interested in being a contributor and want to get involved in
developing this project, we would love to hear from you! [File a GitHub issue](https://github.com/zenml-io/terraform-aws-remote-state/issues/new) or [join
our Slack Community](https://zenml.io/slack-invite/) and we'll see how we can
work together.
In general, PRs are welcome. We follow the typical "fork-and-pull" Git workflow.
1. **Fork** the repo on GitHub
2. **Clone** the project to your own machine
3. **Commit** changes to your own branch
4. **Push** your work back up to your fork
5. Submit a **Pull Request** so that we can review your changes
**NOTE:** Be sure to merge the latest changes from "upstream" before making a pull request!