Skip to content

Commit 91db195

Browse files
author
James Crowley
authored
Merge pull request #34 from sourcefuse/README
updated source and tf/provider versions
2 parents 65423c9 + 82935ed commit 91db195

File tree

5 files changed

+20
-15
lines changed

5 files changed

+20
-15
lines changed

example/.terraform-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
latest:^1.3
1+
latest:^1.4

example/.terraform.lock.hcl

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

example/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Example demonstrating how to use terraform-aws-refarch-ecs.
1010

1111
| Name | Version |
1212
|------|---------|
13-
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | ~> 1.3 |
13+
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | ~> 1.4 |
1414
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | ~> 4.0 |
1515

1616
## Providers
@@ -23,8 +23,8 @@ Example demonstrating how to use terraform-aws-refarch-ecs.
2323

2424
| Name | Source | Version |
2525
|------|--------|---------|
26-
| <a name="module_ecs"></a> [ecs](#module\_ecs) | ../ | n/a |
27-
| <a name="module_tags"></a> [tags](#module\_tags) | git::https://github.com/sourcefuse/terraform-aws-refarch-tags | 1.1.0 |
26+
| <a name="module_ecs"></a> [ecs](#module\_ecs) | sourcefuse/arc-ecs/aws | 1.3.7 |
27+
| <a name="module_tags"></a> [tags](#module\_tags) | sourcefuse/arc-tags/aws | 1.2.3 |
2828

2929
## Resources
3030

@@ -39,9 +39,9 @@ Example demonstrating how to use terraform-aws-refarch-ecs.
3939

4040
| Name | Description | Type | Default | Required |
4141
|------|-------------|------|---------|:--------:|
42-
| <a name="input_acm_domain_name"></a> [acm\_domain\_name](#input\_acm\_domain\_name) | Domain name the ACM Certificate belongs to | `string` | `"*.sfrefarch.com"` | no |
43-
| <a name="input_environment"></a> [environment](#input\_environment) | ID element. Usually used for region e.g. 'uw2', 'us-west-2', OR role 'prod', 'staging', 'dev', 'UAT' | `string` | `"dev"` | no |
44-
| <a name="input_namespace"></a> [namespace](#input\_namespace) | Namespace for the resources. | `string` | `"example"` | no |
42+
| <a name="input_acm_domain_name"></a> [acm\_domain\_name](#input\_acm\_domain\_name) | Domain name the ACM Certificate belongs to | `string` | `"*.sfarcpoc.com"` | no |
43+
| <a name="input_environment"></a> [environment](#input\_environment) | ID element. Usually used for region e.g. 'uw2', 'us-west-2', OR role 'prod', 'staging', 'dev', 'UAT' | `string` | `"poc"` | no |
44+
| <a name="input_namespace"></a> [namespace](#input\_namespace) | Namespace for the resources. | `string` | `"arc"` | no |
4545
| <a name="input_private_subnet_names"></a> [private\_subnet\_names](#input\_private\_subnet\_names) | List of Private Subnet names in the VPC where the network resources currently exist.<br>If not defined, the default value from `terraform-aws-ref-arch-network` will be used.<br>From that module's example, the value is: [`example-dev-private-us-east-1a`, `example-dev-private-us-east-1b`] | `list(string)` | `[]` | no |
4646
| <a name="input_public_subnet_names"></a> [public\_subnet\_names](#input\_public\_subnet\_names) | List of Public Subnet names in the VPC where the network resources currently exist.<br>If not defined, the default value from `terraform-aws-ref-arch-network` will be used.<br>From that module's example, the value is: [`example-dev-public-us-east-1a`, `example-dev-public-us-east-1b`] | `list(string)` | `[]` | no |
4747
| <a name="input_region"></a> [region](#input\_region) | AWS region | `string` | `"us-east-1"` | no |

example/main.tf

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
## defaults
33
################################################################################
44
terraform {
5-
required_version = "~> 1.3"
5+
required_version = "~> 1.4"
66

77
required_providers {
88
aws = {
@@ -13,8 +13,8 @@ terraform {
1313
}
1414

1515
module "tags" {
16-
source = "git::https://github.com/sourcefuse/terraform-aws-refarch-tags?ref=1.1.0"
17-
16+
source = "sourcefuse/arc-tags/aws"
17+
version = "1.2.3"
1818
environment = var.environment
1919
project = "Example"
2020

@@ -32,8 +32,8 @@ provider "aws" {
3232
## ecs
3333
################################################################################
3434
module "ecs" {
35-
source = "../"
36-
35+
source = "sourcefuse/arc-ecs/aws"
36+
version = "1.3.7"
3737
environment = var.environment
3838
namespace = var.namespace
3939

example/variables.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ variable "region" {
1010
variable "environment" {
1111
description = "ID element. Usually used for region e.g. 'uw2', 'us-west-2', OR role 'prod', 'staging', 'dev', 'UAT'"
1212
type = string
13-
default = "dev"
13+
default = "poc"
1414
}
1515

1616
variable "namespace" {
1717
type = string
1818
description = "Namespace for the resources."
19-
default = "example"
19+
default = "arc"
2020
}
2121

2222
################################################################################
@@ -58,5 +58,5 @@ variable "vpc_name" {
5858
variable "acm_domain_name" {
5959
description = "Domain name the ACM Certificate belongs to"
6060
type = string
61-
default = "*.sfrefarch.com"
61+
default = "*.sfarcpoc.com"
6262
}

0 commit comments

Comments
 (0)