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

feat(container-registry): add OVHcloud IAM feature for Managed Registry #907

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

air1bzz
Copy link

@air1bzz air1bzz commented Mar 14, 2025

Description

Add resource cloud_project_containerregistry_iam

This make iam actions on Managed Registry available through Terraform.

Type of change

Please delete options that are not relevant.

  • New feature (non-breaking change which adds functionality)
  • Documentation update

How Has This Been Tested?

Test A: make testacc TESTARGS="-run TestAccCloudProjectContainerRegistryIAMDataSource_basic"

Test Configuration:

Terraform version: terraform version: Terraform vx.y.z
Existing HCL configuration you used:

resource "ovh_cloud_project_containerregistry_iam" "my-iam" {
	service_name = <service_name>
	registry_id  = <registry_id>

	delete_users = true
}

Checklist:

My code follows the style guidelines of this project

  • I have performed a self-review of my code
  • I have commented my code, particularly in hard-to-understand areas
  • I have made corresponding changes to the documentation
  • My changes generate no new warnings or issues
  • I have added acceptance tests that prove my fix is effective or that my feature works
  • New and existing acceptance tests pass locally with my changes
  • I ran successfully go mod vendor if I added or modify go.mod file

Comments

As those routes are not yet available publicly, can you contact PU.PLATFORM | Managed Kubernetes/Registry/Rancher before merging. @erwan morvan

@air1bzz air1bzz requested a review from a team as a code owner March 14, 2025 13:36

# ovh_cloud_project_containerregistry_iam (Data Source)

Use this data source to get a OVHcloud Managed Private Registry through OVHcloud IAM.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We should rephrase this

if err != nil {
return fmt.Errorf("calling get %s %w", endpoint, err)
}
for k, v := range res.ToMap() {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
for k, v := range res.ToMap() {
for k, v := range res.ToMap() {

Optional: true,
ForceNew: true,
},
"iam_enable": {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
"iam_enable": {
"iam_enabled": {

?

return fmt.Errorf("calling get %s %w", endpoint, err)
}
for k, v := range res.ToMap() {
if k == "iam_enable" {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
if k == "iam_enable" {
if k == "iam_enabled" {

?

if err != nil {
return fmt.Errorf("calling get %s %w", endpoint, err)
}
for k, v := range res.ToMap() {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
for k, v := range res.ToMap() {
for k, v := range res.ToMap() {

if len(splitId) != 2 {
return nil, fmt.Errorf("import Id is not service_name/registryId formatted")
}
serviceName := splitId[0]
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
serviceName := splitId[0]
serviceName := splitId[0]

}
serviceName := splitId[0]
registryID := splitId[1]
d.SetId(serviceName + "/" + registryID)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
d.SetId(serviceName + "/" + registryID)
d.SetId(serviceName + "/" + registryID)


d.SetId(serviceName + "/" + registryID)

log.Printf("[DEBUG] Read registry %+v", res)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
log.Printf("[DEBUG] Read registry %+v", res)
log.Printf("[DEBUG] Read registry %+v", res)

@air1bzz air1bzz marked this pull request as draft March 14, 2025 15:06
…ry product

Terraform is able to enable/disable OVHcloud IAM feature for Managed Registry product
@air1bzz air1bzz force-pushed the feat/emo/add_container_registry_iam_feature branch from 8d48a11 to edfbe4e Compare March 14, 2025 15:45
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants