Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
AWS
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
CI / CD Analytics
Repository Analytics
Value Stream Analytics
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
karishma.anupuru
AWS
Commits
3e2a56fc
Commit
3e2a56fc
authored
Jun 29, 2022
by
karishma.anupuru
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add new file
parent
ac3c3430
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
27 additions
and
0 deletions
+27
-0
variables.tf
variables.tf
+27
-0
No files found.
variables.tf
0 → 100644
View file @
3e2a56fc
variable
"aws_region"
{
description
=
"The AWS region to use to crwate resources."
default
=
"us-east-2"
}
variable
"bucket_prefix"
{
type
=
string
description
=
"(required since we are not using 'bucket') Creates a unique bucket name begining with the specified prefix. Conflicts with bucket."
default
=
"my-s3bucket."
}
variable
"tags"
{
type
=
map
description
=
"(optional) A mapping of tags to assign to the bucket."
default
=
{
environment
=
"DEV"
terraform
=
"true"
}
}
variable
"versioning"
{
type
=
bool
description
=
"(optional) A state of versioning."
default
=
true
}
variable
"acl"
{
type
=
string
description
=
"Defaults to private "
default
=
"private"
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment