Skip to content

Commit

Permalink
Merge pull request #24 from sourcefuse/README
Browse files Browse the repository at this point in the history
updated tf version and source
  • Loading branch information
mayank0202 authored Sep 26, 2023
2 parents c96418f + b122c2c commit 0462391
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .terraform-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.1.3
1.4.0
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# [Terraform Module: Bootstrap](https://github.com/sourcefuse/terraform-module-aws-bootstrap)
# [terraform-aws-arc-bootstrap](https://github.com/sourcefuse/terraform-aws-arc-bootstrap)

[![Known Vulnerabilities](https://github.com/sourcefuse/terraform-module-aws-bootstrap/actions/workflows/snyk.yaml/badge.svg)](https://github.com/sourcefuse/terraform-module-aws-bootstrap/actions/workflows/snyk.yaml)

Expand All @@ -7,8 +7,8 @@ This module creates and configures a S3 bucket backend and DynamoDB lock table f
## Getting Started
```hcl
module "bootstrap" {
source = "git::https://github.com/sourcefuse/terraform-module-aws-bootstrap"
source = "sourcefuse/arc-bootstrap/aws"
version = "1.0.9"
bucket_name = var.bucket_name
dynamodb_name = var.dynamodb_name
dynamo_kms_master_key_id = var.dynamo_kms_master_key_id
Expand All @@ -20,7 +20,7 @@ module "bootstrap" {

| Name | Version |
|------|---------|
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.0.8 |
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | ~> 1.4 |
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | ~> 3.0 |

## Providers
Expand Down
6 changes: 3 additions & 3 deletions example/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

| Name | Version |
|------|---------|
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.0.8 |
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | ~> 1.4 |
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | ~> 3.0 |

## Providers
Expand All @@ -14,8 +14,8 @@ No providers.

| Name | Source | Version |
|------|--------|---------|
| <a name="module_bootstrap"></a> [bootstrap](#module\_bootstrap) | ../ | n/a |
| <a name="module_tags"></a> [tags](#module\_tags) | git::https://github.com/sourcefuse/terraform-aws-refarch-tags | 1.1.1 |
| <a name="module_bootstrap"></a> [bootstrap](#module\_bootstrap) | sourcefuse/arc-bootstrap/aws | 1.0.9 |
| <a name="module_tags"></a> [tags](#module\_tags) | sourcefuse/arc-tags/aws | 1.2.2 |

## Resources

Expand Down
10 changes: 5 additions & 5 deletions example/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
## defaults
################################################
terraform {
required_version = ">= 1.0.8"
required_version = "~> 1.4"
required_providers {
aws = {
source = "hashicorp/aws"
Expand All @@ -23,8 +23,8 @@ provider "aws" {
# data "aws_caller_identity" "current" {} // uncomment this when using this module anywhere

module "tags" {
source = "git::https://github.com/sourcefuse/terraform-aws-refarch-tags?ref=1.1.1"

source = "sourcefuse/arc-tags/aws"
version = "1.2.2"
environment = var.environment
project = "arc"

Expand All @@ -36,8 +36,8 @@ module "tags" {
}

module "bootstrap" {
source = "../"

source = "sourcefuse/arc-bootstrap/aws"
version = "1.0.9"
bucket_name = var.bucket_name
dynamodb_name = var.dynamodb_name
dynamo_kms_master_key_id = var.dynamo_kms_master_key_id
Expand Down
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
## defaults
################################################
terraform {
required_version = ">= 1.0.8"
required_version = "~> 1.4"
required_providers {
aws = {
source = "hashicorp/aws"
Expand Down

0 comments on commit 0462391

Please sign in to comment.