Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add resource aws_fsx_filecache #27384

Merged
merged 33 commits into from
Nov 1, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
185ed79
add resource aws_fsx_filecache
albsilv-aws Oct 21, 2022
7020b70
add changelog
albsilv-aws Oct 21, 2022
5b3b890
fixed arn parameter name for tag updates
albsilv-aws Oct 21, 2022
fc80c64
spilt up finders/status/waiters
albsilv-aws Oct 21, 2022
bfafa3b
initial tests
albsilv-aws Oct 21, 2022
e84a251
update provider.go with aws_fsx_filecache resource
albsilv-aws Oct 21, 2022
3887e01
fix issues with copy_tags_to_data_repository_associations
albsilv-aws Oct 23, 2022
2c01c37
refactor data repository lookup+tags
albsilv-aws Oct 23, 2022
4900855
set file_cache_id
albsilv-aws Oct 23, 2022
580afc9
fix nfs data repositories
albsilv-aws Oct 24, 2022
34a5966
rename resource_arn to arn
albsilv-aws Oct 24, 2022
cfb2ae6
add documentation
albsilv-aws Oct 24, 2022
58458e6
add/enhance tests
albsilv-aws Oct 24, 2022
950ba3b
fix golangci-lint findings
albsilv-aws Oct 24, 2022
f6aa09a
update description for lustre_configuration
albsilv-aws Oct 24, 2022
54bc1b7
Merge branch 'main' into f-filecache-resource
albsilv-aws Oct 24, 2022
34a5d17
terrafmt
albsilv-aws Oct 24, 2022
ba281f4
fix lint errors
albsilv-aws Oct 24, 2022
ff24f74
fix name from aws_fsx_filecache to aws_fsx_file_cache
albsilv-aws Oct 24, 2022
dbe3a53
address golangci-lint findings
albsilv-aws Oct 24, 2022
9d4a0df
address semgrep findings
albsilv-aws Oct 24, 2022
ac4c985
fix test names
albsilv-aws Oct 24, 2022
303cab0
add Example Usage
albsilv-aws Oct 24, 2022
3ee7450
fix test names
albsilv-aws Oct 24, 2022
0aeaff9
fix failing tests
albsilv-aws Oct 24, 2022
e9e826a
fix failing tests
albsilv-aws Oct 25, 2022
8e39707
terrafmt
albsilv-aws Oct 25, 2022
c436ef9
fix testAccFileCache_dataRepositoryAssociation test
albsilv-aws Oct 25, 2022
cf9befb
tidy up flex functions
albsilv-aws Oct 26, 2022
2a7222d
tidy up tests
albsilv-aws Oct 26, 2022
db684e3
troubleshoot data_repository_association recreation
albsilv-aws Oct 26, 2022
bb6bf9e
update unecessary List schema objects to Set
albsilv-aws Oct 30, 2022
39960ca
Update 27384.txt
ewbankkit Oct 31, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .changelog/27384.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:new-resource
aws_fsx_file_cache
```
1 change: 1 addition & 0 deletions internal/provider/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -1524,6 +1524,7 @@ func New(_ context.Context) (*schema.Provider, error) {
"aws_fsx_backup": fsx.ResourceBackup(),
"aws_fsx_lustre_file_system": fsx.ResourceLustreFileSystem(),
"aws_fsx_data_repository_association": fsx.ResourceDataRepositoryAssociation(),
"aws_fsx_file_cache": fsx.ResourceFileCache(),
"aws_fsx_ontap_file_system": fsx.ResourceOntapFileSystem(),
"aws_fsx_ontap_storage_virtual_machine": fsx.ResourceOntapStorageVirtualMachine(),
"aws_fsx_ontap_volume": fsx.ResourceOntapVolume(),
Expand Down
Loading