File tree Expand file tree Collapse file tree 4 files changed +4
-23
lines changed Expand file tree Collapse file tree 4 files changed +4
-23
lines changed Original file line number Diff line number Diff line change @@ -16,10 +16,13 @@ This AWS VPC Module will create following resources:
16
16
## Usage
17
17
18
18
``` terraform
19
+ provider "aws" {
20
+ region = "ap-south-1"
21
+ }
22
+
19
23
module "vpc" {
20
24
source = "opensource4learn/vpc/aws"
21
25
version = "0.1.0-beta"
22
- aws_region = "ap-south-1"
23
26
cluster_prefix = "source4learn"
24
27
cluster_environment = "production"
25
28
cidr = "10.0.0.0/20"
@@ -33,12 +36,6 @@ module "vpc" {
33
36
| ------| ---------|
34
37
| <a name =" requirement_terraform " ></a > [ terraform] ( #requirement\_ terraform ) | >= 0.12.0 |
35
38
36
- ## Providers
37
-
38
- | Name | Version |
39
- | ------| ---------|
40
- | <a name =" provider_aws " ></a > [ aws] ( #provider\_ aws ) | n/a |
41
-
42
39
## Modules
43
40
44
41
| Name | Source | Version |
@@ -59,7 +56,6 @@ module "vpc" {
59
56
60
57
| Name | Description | Type | Default | Required |
61
58
| ------| -------------| ------| ---------| :--------:|
62
- | <a name =" input_aws_region " ></a > [ aws\_ region] ( #input\_ aws\_ region ) | AWS Default Region | ` string ` | n/a | yes |
63
59
| <a name =" input_cidr " ></a > [ cidr] ( #input\_ cidr ) | CIDR block value to define the size of the AWS VPC | ` string ` | ` "10.0.0.0/20" ` | no |
64
60
| <a name =" input_cluster_environment " ></a > [ cluster_environment] ( #input\_ cluster_environment ) | To apply generic cluster_environment to AWS VPC Resources | ` string ` | n/a | yes |
65
61
| <a name =" input_cluster_prefix " ></a > [ cluster_prefix] ( #input\_ cluster_prefix ) | To apply generic naming to AWS VPC Resources | ` string ` | n/a | yes |
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
# Terraform Variables
2
- variable "aws_region" {
3
- description = " AWS Default Region"
4
- type = string
5
- }
6
-
7
2
variable "cluster_prefix" {
8
3
description = " To apply generic naming to AWS VPC Resources"
9
4
type = string
You can’t perform that action at this time.
0 commit comments