Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
IaC Scan Runner
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
PIACERE
public
The Platform
IaC Scan Runner
Commits
91ba2663
Commit
91ba2663
authored
Aug 9, 2022
by
Your Name
Browse files
Options
Downloads
Patches
Plain Diff
Removed example .tf files
parent
f47f92ca
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
examples/database.tf
+0
-25
0 additions, 25 deletions
examples/database.tf
examples/main.tf
+0
-7
0 additions, 7 deletions
examples/main.tf
with
0 additions
and
32 deletions
examples/database.tf
deleted
100644 → 0
+
0
−
25
View file @
f47f92ca
module
"db"
{
source
=
"terraform-aws-modules/rds/aws"
version
=
"~> 2.0"
identifier
=
"demodb"
engine
=
"mysql"
engine_version
=
"5.7.19"
instance_class
=
"db.t2.large"
allocated_storage
=
5
name
=
"demodb"
username
=
"user"
password
=
aws_ssm_parameter
.
pw
.
value
port
=
"3306"
maintenance_window
=
"Mon:00:00-Mon:03:00"
backup_window
=
"03:00-06:00"
}
resource
"aws_ssm_parameter"
"pw"
{
name
=
"pw"
type
=
"SecureString"
value
=
"SuperSecurePassword"
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
examples/main.tf
deleted
100644 → 0
+
0
−
7
View file @
f47f92ca
module
"acme_finance_bucket"
{
source
=
"./modules/acme_bucket"
bucket_name
=
"finance-reports"
cost_centre
=
"CC001"
s3_logging_bucket
=
var
.
acme_s3_logging_bucket
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment