Skip to content

Commit

Permalink
Add S3 placeholder access check file
Browse files Browse the repository at this point in the history
Signed-off-by: Robert Detjens <[email protected]>
  • Loading branch information
detjensrobert committed Jun 19, 2024
1 parent abdc650 commit e169c34
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/access_handlers/docker.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use anyhow::{Error, Result};

use crate::configparser::{config, CONFIG};

/// kubernetes access checks
/// container registry / daemon access checks
pub fn check(profile: &config::ProfileConfig) -> Result<()> {
Ok(())
}
2 changes: 1 addition & 1 deletion src/access_handlers/frontend.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use anyhow::{Error, Result};

use crate::configparser::{config, CONFIG};

/// kubernetes access checks
/// frontend dashbard access checks
pub fn check(profile: &config::ProfileConfig) -> Result<()> {
Ok(())
}
1 change: 1 addition & 0 deletions src/access_handlers/mod.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
pub mod docker;
pub mod frontend;
pub mod kube;
pub mod s3;
8 changes: 8 additions & 0 deletions src/access_handlers/s3.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
use anyhow::{Error, Result};

use crate::configparser::{config, CONFIG};

/// s3 bucket access checks
pub fn check(profile: &config::ProfileConfig) -> Result<()> {
Ok(())
}

0 comments on commit e169c34

Please sign in to comment.