index.html 250 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227122281222912230122311223212233122341223512236122371223812239122401224112242122431224412245122461224712248122491225012251122521225312254122551225612257122581225912260122611226212263122641226512266122671226812269122701227112272122731227412275122761227712278122791228012281122821228312284122851228612287122881228912290122911229212293122941229512296122971229812299123001230112302123031230412305123061230712308123091231012311123121231312314123151231612317123181231912320123211232212323123241232512326123271232812329123301233112332123331233412335123361233712338123391234012341123421234312344123451234612347123481234912350123511235212353123541235512356123571235812359123601236112362123631236412365123661236712368123691237012371123721237312374123751237612377123781237912380123811238212383123841238512386123871238812389123901239112392123931239412395123961239712398123991240012401124021240312404124051240612407124081240912410124111241212413124141241512416124171241812419124201242112422124231242412425124261242712428124291243012431124321243312434124351243612437124381243912440124411244212443124441244512446124471244812449124501245112452124531245412455124561245712458124591246012461124621246312464124651246612467124681246912470124711247212473124741247512476124771247812479124801248112482124831248412485124861248712488124891249012491124921249312494124951249612497124981249912500125011250212503125041250512506125071250812509125101251112512125131251412515125161251712518125191252012521125221252312524125251252612527125281252912530125311253212533125341253512536125371253812539125401254112542125431254412545125461254712548125491255012551125521255312554125551255612557125581255912560125611256212563125641256512566125671256812569125701257112572125731257412575125761257712578125791258012581125821258312584125851258612587125881258912590125911259212593125941259512596125971259812599126001260112602126031260412605126061260712608126091261012611126121261312614126151261612617126181261912620126211262212623126241262512626126271262812629126301263112632126331263412635126361263712638126391264012641126421264312644126451264612647126481264912650126511265212653126541265512656126571265812659126601266112662126631266412665126661266712668126691267012671126721267312674126751267612677126781267912680126811268212683126841268512686126871268812689126901269112692126931269412695126961269712698126991270012701127021270312704127051270612707127081270912710127111271212713127141271512716127171271812719127201272112722127231272412725127261272712728127291273012731127321273312734127351273612737127381273912740127411274212743127441274512746127471274812749127501275112752127531275412755127561275712758127591276012761127621276312764127651276612767127681276912770127711277212773127741277512776127771277812779127801278112782127831278412785127861278712788127891279012791127921279312794127951279612797127981279912800128011280212803128041280512806128071280812809128101281112812128131281412815128161281712818128191282012821128221282312824128251282612827128281282912830128311283212833128341283512836128371283812839128401284112842128431284412845128461284712848128491285012851128521285312854128551285612857128581285912860128611286212863128641286512866128671286812869128701287112872128731287412875128761287712878128791288012881128821288312884128851288612887128881288912890128911289212893128941289512896128971289812899129001290112902129031290412905129061290712908129091291012911129121291312914129151291612917129181291912920129211292212923129241292512926129271292812929129301293112932129331293412935129361293712938129391294012941129421294312944129451294612947129481294912950129511295212953129541295512956129571295812959129601296112962129631296412965129661296712968129691297012971129721297312974129751297612977129781297912980129811298212983129841298512986129871298812989129901299112992129931299412995129961299712998129991300013001130021300313004130051300613007130081300913010130111301213013130141301513016130171301813019130201302113022130231302413025130261302713028130291303013031130321303313034130351303613037130381303913040130411304213043130441304513046130471304813049130501305113052130531305413055130561305713058130591306013061130621306313064130651306613067130681306913070130711307213073130741307513076130771307813079130801308113082130831308413085130861308713088130891309013091130921309313094130951309613097130981309913100131011310213103131041310513106131071310813109131101311113112131131311413115131161311713118131191312013121131221312313124131251312613127131281312913130131311313213133131341313513136131371313813139131401314113142131431314413145131461314713148131491315013151131521315313154131551315613157131581315913160131611316213163131641316513166131671316813169131701317113172131731317413175131761317713178131791318013181131821318313184131851318613187131881318913190131911319213193131941319513196131971319813199132001320113202132031320413205132061320713208132091321013211132121321313214132151321613217132181321913220132211322213223132241322513226132271322813229132301323113232132331323413235132361323713238132391324013241132421324313244132451324613247132481324913250132511325213253132541325513256132571325813259132601326113262132631326413265132661326713268132691327013271132721327313274132751327613277132781327913280132811328213283132841328513286132871328813289132901329113292132931329413295132961329713298132991330013301133021330313304133051330613307133081330913310133111331213313133141331513316133171331813319133201332113322133231332413325133261332713328133291333013331133321333313334133351333613337133381333913340133411334213343133441334513346133471334813349133501335113352133531335413355133561335713358133591336013361133621336313364133651336613367133681336913370133711337213373133741337513376133771337813379133801338113382133831338413385133861338713388133891339013391133921339313394133951339613397133981339913400134011340213403134041340513406134071340813409134101341113412134131341413415134161341713418134191342013421134221342313424134251342613427134281342913430134311343213433134341343513436134371343813439134401344113442134431344413445134461344713448134491345013451134521345313454134551345613457134581345913460134611346213463134641346513466134671346813469134701347113472134731347413475134761347713478134791348013481134821348313484134851348613487134881348913490134911349213493134941349513496134971349813499135001350113502135031350413505135061350713508135091351013511135121351313514135151351613517135181351913520135211352213523135241352513526135271352813529135301353113532135331353413535135361353713538135391354013541135421354313544135451354613547135481354913550135511355213553135541355513556135571355813559135601356113562135631356413565135661356713568135691357013571135721357313574135751357613577135781357913580135811358213583135841358513586135871358813589135901359113592135931359413595135961359713598135991360013601136021360313604136051360613607136081360913610136111361213613136141361513616136171361813619136201362113622136231362413625136261362713628136291363013631136321363313634136351363613637136381363913640136411364213643136441364513646136471364813649136501365113652136531365413655136561365713658136591366013661136621366313664136651366613667136681366913670136711367213673136741367513676136771367813679136801368113682136831368413685136861368713688136891369013691136921369313694136951369613697136981369913700137011370213703137041370513706137071370813709137101371113712137131371413715137161371713718137191372013721137221372313724137251372613727137281372913730137311373213733137341373513736137371373813739137401374113742137431374413745137461374713748137491375013751137521375313754137551375613757137581375913760137611376213763137641376513766137671376813769137701377113772137731377413775137761377713778137791378013781137821378313784137851378613787137881378913790137911379213793137941379513796137971379813799138001380113802138031380413805138061380713808138091381013811138121381313814138151381613817138181381913820138211382213823138241382513826138271382813829138301383113832138331383413835138361383713838138391384013841138421384313844138451384613847138481384913850138511385213853138541385513856138571385813859138601386113862138631386413865138661386713868138691387013871138721387313874138751387613877138781387913880138811388213883138841388513886138871388813889138901389113892138931389413895138961389713898138991390013901139021390313904139051390613907139081390913910139111391213913139141391513916139171391813919139201392113922139231392413925139261392713928139291393013931139321393313934139351393613937139381393913940139411394213943139441394513946139471394813949139501395113952139531395413955139561395713958139591396013961139621396313964139651396613967139681396913970139711397213973139741397513976139771397813979139801398113982139831398413985139861398713988139891399013991139921399313994139951399613997139981399914000140011400214003140041400514006140071400814009140101401114012140131401414015140161401714018140191402014021140221402314024140251402614027140281402914030140311403214033140341403514036140371403814039140401404114042140431404414045140461404714048140491405014051140521405314054140551405614057140581405914060140611406214063140641406514066140671406814069140701407114072140731407414075140761407714078140791408014081140821408314084140851408614087140881408914090140911409214093140941409514096140971409814099141001410114102141031410414105141061410714108141091411014111141121411314114141151411614117141181411914120141211412214123141241412514126141271412814129141301413114132141331413414135141361413714138141391414014141141421414314144141451414614147141481414914150141511415214153141541415514156141571415814159141601416114162141631416414165141661416714168141691417014171141721417314174141751417614177141781417914180141811418214183141841418514186141871418814189141901419114192141931419414195141961419714198141991420014201142021420314204142051420614207142081420914210142111421214213142141421514216142171421814219142201422114222142231422414225142261422714228142291423014231
  1. <!doctype html>
  2. <html lang="en" class="no-js">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width,initial-scale=1">
  6. <link rel="prev" href="../generator/uuid/">
  7. <link rel="next" href="../controller-options/">
  8. <link rel="icon" href="../../pictures/eso-round-logo.svg">
  9. <meta name="generator" content="mkdocs-1.6.1, mkdocs-material-9.6.13">
  10. <title>API specification - External Secrets Operator</title>
  11. <link rel="stylesheet" href="../../assets/stylesheets/main.342714a4.min.css">
  12. <link rel="stylesheet" href="../../assets/stylesheets/palette.06af60db.min.css">
  13. <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  14. <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,300i,400,400i,700,700i%7CRoboto+Mono:400,400i,700,700i&display=fallback">
  15. <style>:root{--md-text-font:"Roboto";--md-code-font:"Roboto Mono"}</style>
  16. <script>__md_scope=new URL("../..",location),__md_hash=e=>[...e].reduce(((e,_)=>(e<<5)-e+_.charCodeAt(0)),0),__md_get=(e,_=localStorage,t=__md_scope)=>JSON.parse(_.getItem(t.pathname+"."+e)),__md_set=(e,_,t=localStorage,a=__md_scope)=>{try{t.setItem(a.pathname+"."+e,JSON.stringify(_))}catch(e){}}</script>
  17. <script id="__analytics">function __md_analytics(){function e(){dataLayer.push(arguments)}window.dataLayer=window.dataLayer||[],e("js",new Date),e("config","G-QP38TD8K7V"),document.addEventListener("DOMContentLoaded",(function(){document.forms.search&&document.forms.search.query.addEventListener("blur",(function(){this.value&&e("event","search",{search_term:this.value})}));document$.subscribe((function(){var t=document.forms.feedback;if(void 0!==t)for(var a of t.querySelectorAll("[type=submit]"))a.addEventListener("click",(function(a){a.preventDefault();var n=document.location.pathname,d=this.getAttribute("data-md-value");e("event","feedback",{page:n,data:d}),t.firstElementChild.disabled=!0;var r=t.querySelector(".md-feedback__note [data-md-value='"+d+"']");r&&(r.hidden=!1)})),t.hidden=!1})),location$.subscribe((function(t){e("config","G-QP38TD8K7V",{page_path:t.pathname})}))}));var t=document.createElement("script");t.async=!0,t.src="https://www.googletagmanager.com/gtag/js?id=G-QP38TD8K7V",document.getElementById("__analytics").insertAdjacentElement("afterEnd",t)}</script>
  18. <script>"undefined"!=typeof __md_analytics&&__md_analytics()</script>
  19. </head>
  20. <body dir="ltr" data-md-color-scheme="default" data-md-color-primary="indigo" data-md-color-accent="indigo">
  21. <input class="md-toggle" data-md-toggle="drawer" type="checkbox" id="__drawer" autocomplete="off">
  22. <input class="md-toggle" data-md-toggle="search" type="checkbox" id="__search" autocomplete="off">
  23. <label class="md-overlay" for="__drawer"></label>
  24. <div data-md-component="skip">
  25. </div>
  26. <div data-md-component="announce">
  27. </div>
  28. <div data-md-color-scheme="default" data-md-component="outdated" hidden>
  29. <aside class="md-banner md-banner--warning">
  30. <div class="md-banner__inner md-grid md-typeset">
  31. You're not viewing the latest version.
  32. <a href="../../..">
  33. <strong>Click here to go to latest.</strong>
  34. </a>
  35. </div>
  36. <script>var el=document.querySelector("[data-md-component=outdated]"),base=new URL("../.."),outdated=__md_get("__outdated",sessionStorage,base);!0===outdated&&el&&(el.hidden=!1)</script>
  37. </aside>
  38. </div>
  39. <header class="md-header" data-md-component="header">
  40. <nav class="md-header__inner md-grid" aria-label="Header">
  41. <a href="../.." title="External Secrets Operator" class="md-header__button md-logo" aria-label="External Secrets Operator" data-md-component="logo">
  42. <img src="../../pictures/eso-round-logo.svg" alt="logo">
  43. </a>
  44. <label class="md-header__button md-icon" for="__drawer">
  45. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 6h18v2H3zm0 5h18v2H3zm0 5h18v2H3z"/></svg>
  46. </label>
  47. <div class="md-header__title" data-md-component="header-title">
  48. <div class="md-header__ellipsis">
  49. <div class="md-header__topic">
  50. <span class="md-ellipsis">
  51. External Secrets Operator
  52. </span>
  53. </div>
  54. <div class="md-header__topic" data-md-component="header-topic">
  55. <span class="md-ellipsis">
  56. API specification
  57. </span>
  58. </div>
  59. </div>
  60. </div>
  61. <form class="md-header__option" data-md-component="palette">
  62. <input class="md-option" data-md-color-media="(prefers-color-scheme: light)" data-md-color-scheme="default" data-md-color-primary="indigo" data-md-color-accent="indigo" aria-label="Switch to dark mode" type="radio" name="__palette" id="__palette_0">
  63. <label class="md-header__button md-icon" title="Switch to dark mode" for="__palette_1" hidden>
  64. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 8a4 4 0 0 0-4 4 4 4 0 0 0 4 4 4 4 0 0 0 4-4 4 4 0 0 0-4-4m0 10a6 6 0 0 1-6-6 6 6 0 0 1 6-6 6 6 0 0 1 6 6 6 6 0 0 1-6 6m8-9.31V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12z"/></svg>
  65. </label>
  66. <input class="md-option" data-md-color-media="(prefers-color-scheme: dark)" data-md-color-scheme="slate" data-md-color-primary="indigo" data-md-color-accent="indigo" aria-label="Switch to light mode" type="radio" name="__palette" id="__palette_1">
  67. <label class="md-header__button md-icon" title="Switch to light mode" for="__palette_0" hidden>
  68. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 18c-.89 0-1.74-.2-2.5-.55C11.56 16.5 13 14.42 13 12s-1.44-4.5-3.5-5.45C10.26 6.2 11.11 6 12 6a6 6 0 0 1 6 6 6 6 0 0 1-6 6m8-9.31V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12z"/></svg>
  69. </label>
  70. </form>
  71. <script>var palette=__md_get("__palette");if(palette&&palette.color){if("(prefers-color-scheme)"===palette.color.media){var media=matchMedia("(prefers-color-scheme: light)"),input=document.querySelector(media.matches?"[data-md-color-media='(prefers-color-scheme: light)']":"[data-md-color-media='(prefers-color-scheme: dark)']");palette.color.media=input.getAttribute("data-md-color-media"),palette.color.scheme=input.getAttribute("data-md-color-scheme"),palette.color.primary=input.getAttribute("data-md-color-primary"),palette.color.accent=input.getAttribute("data-md-color-accent")}for(var[key,value]of Object.entries(palette.color))document.body.setAttribute("data-md-color-"+key,value)}</script>
  72. <label class="md-header__button md-icon" for="__search">
  73. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.5 3A6.5 6.5 0 0 1 16 9.5c0 1.61-.59 3.09-1.56 4.23l.27.27h.79l5 5-1.5 1.5-5-5v-.79l-.27-.27A6.52 6.52 0 0 1 9.5 16 6.5 6.5 0 0 1 3 9.5 6.5 6.5 0 0 1 9.5 3m0 2C7 5 5 7 5 9.5S7 14 9.5 14 14 12 14 9.5 12 5 9.5 5"/></svg>
  74. </label>
  75. <div class="md-search" data-md-component="search" role="dialog">
  76. <label class="md-search__overlay" for="__search"></label>
  77. <div class="md-search__inner" role="search">
  78. <form class="md-search__form" name="search">
  79. <input type="text" class="md-search__input" name="query" aria-label="Search" placeholder="Search" autocapitalize="off" autocorrect="off" autocomplete="off" spellcheck="false" data-md-component="search-query" required>
  80. <label class="md-search__icon md-icon" for="__search">
  81. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.5 3A6.5 6.5 0 0 1 16 9.5c0 1.61-.59 3.09-1.56 4.23l.27.27h.79l5 5-1.5 1.5-5-5v-.79l-.27-.27A6.52 6.52 0 0 1 9.5 16 6.5 6.5 0 0 1 3 9.5 6.5 6.5 0 0 1 9.5 3m0 2C7 5 5 7 5 9.5S7 14 9.5 14 14 12 14 9.5 12 5 9.5 5"/></svg>
  82. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 11v2H8l5.5 5.5-1.42 1.42L4.16 12l7.92-7.92L13.5 5.5 8 11z"/></svg>
  83. </label>
  84. <nav class="md-search__options" aria-label="Search">
  85. <button type="reset" class="md-search__icon md-icon" title="Clear" aria-label="Clear" tabindex="-1">
  86. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 6.41 17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"/></svg>
  87. </button>
  88. </nav>
  89. </form>
  90. <div class="md-search__output">
  91. <div class="md-search__scrollwrap" tabindex="0" data-md-scrollfix>
  92. <div class="md-search-result" data-md-component="search-result">
  93. <div class="md-search-result__meta">
  94. Initializing search
  95. </div>
  96. <ol class="md-search-result__list" role="presentation"></ol>
  97. </div>
  98. </div>
  99. </div>
  100. </div>
  101. </div>
  102. <div class="md-header__source">
  103. <a href="https://github.com/external-secrets/external-secrets" title="Go to repository" class="md-source" data-md-component="source">
  104. <div class="md-source__icon md-icon">
  105. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M439.55 236.05 244 40.45a28.87 28.87 0 0 0-40.81 0l-40.66 40.63 51.52 51.52c27.06-9.14 52.68 16.77 43.39 43.68l49.66 49.66c34.23-11.8 61.18 31 35.47 56.69-26.49 26.49-70.21-2.87-56-37.34L240.22 199v121.85c25.3 12.54 22.26 41.85 9.08 55a34.34 34.34 0 0 1-48.55 0c-17.57-17.6-11.07-46.91 11.25-56v-123c-20.8-8.51-24.6-30.74-18.64-45L142.57 101 8.45 235.14a28.86 28.86 0 0 0 0 40.81l195.61 195.6a28.86 28.86 0 0 0 40.8 0l194.69-194.69a28.86 28.86 0 0 0 0-40.81"/></svg>
  106. </div>
  107. <div class="md-source__repository">
  108. External Secrets Operator
  109. </div>
  110. </a>
  111. </div>
  112. </nav>
  113. </header>
  114. <div class="md-container" data-md-component="container">
  115. <nav class="md-tabs" aria-label="Tabs" data-md-component="tabs">
  116. <div class="md-grid">
  117. <ul class="md-tabs__list">
  118. <li class="md-tabs__item">
  119. <a href="../.." class="md-tabs__link">
  120. Introduction
  121. </a>
  122. </li>
  123. <li class="md-tabs__item md-tabs__item--active">
  124. <a href="../components/" class="md-tabs__link">
  125. API
  126. </a>
  127. </li>
  128. <li class="md-tabs__item">
  129. <a href="../../guides/introduction/" class="md-tabs__link">
  130. Guides
  131. </a>
  132. </li>
  133. <li class="md-tabs__item">
  134. <a href="../../provider/aws-secrets-manager/" class="md-tabs__link">
  135. Provider
  136. </a>
  137. </li>
  138. <li class="md-tabs__item">
  139. <a href="../../examples/gitops-using-fluxcd/" class="md-tabs__link">
  140. Examples
  141. </a>
  142. </li>
  143. <li class="md-tabs__item">
  144. <a href="../../contributing/devguide/" class="md-tabs__link">
  145. Community
  146. </a>
  147. </li>
  148. </ul>
  149. </div>
  150. </nav>
  151. <main class="md-main" data-md-component="main">
  152. <div class="md-main__inner md-grid">
  153. <div class="md-sidebar md-sidebar--primary" data-md-component="sidebar" data-md-type="navigation" >
  154. <div class="md-sidebar__scrollwrap">
  155. <div class="md-sidebar__inner">
  156. <nav class="md-nav md-nav--primary md-nav--lifted" aria-label="Navigation" data-md-level="0">
  157. <label class="md-nav__title" for="__drawer">
  158. <a href="../.." title="External Secrets Operator" class="md-nav__button md-logo" aria-label="External Secrets Operator" data-md-component="logo">
  159. <img src="../../pictures/eso-round-logo.svg" alt="logo">
  160. </a>
  161. External Secrets Operator
  162. </label>
  163. <div class="md-nav__source">
  164. <a href="https://github.com/external-secrets/external-secrets" title="Go to repository" class="md-source" data-md-component="source">
  165. <div class="md-source__icon md-icon">
  166. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M439.55 236.05 244 40.45a28.87 28.87 0 0 0-40.81 0l-40.66 40.63 51.52 51.52c27.06-9.14 52.68 16.77 43.39 43.68l49.66 49.66c34.23-11.8 61.18 31 35.47 56.69-26.49 26.49-70.21-2.87-56-37.34L240.22 199v121.85c25.3 12.54 22.26 41.85 9.08 55a34.34 34.34 0 0 1-48.55 0c-17.57-17.6-11.07-46.91 11.25-56v-123c-20.8-8.51-24.6-30.74-18.64-45L142.57 101 8.45 235.14a28.86 28.86 0 0 0 0 40.81l195.61 195.6a28.86 28.86 0 0 0 40.8 0l194.69-194.69a28.86 28.86 0 0 0 0-40.81"/></svg>
  167. </div>
  168. <div class="md-source__repository">
  169. External Secrets Operator
  170. </div>
  171. </a>
  172. </div>
  173. <ul class="md-nav__list" data-md-scrollfix>
  174. <li class="md-nav__item md-nav__item--nested">
  175. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_1" >
  176. <div class="md-nav__link md-nav__container">
  177. <a href="../.." class="md-nav__link ">
  178. <span class="md-ellipsis">
  179. Introduction
  180. </span>
  181. </a>
  182. <label class="md-nav__link " for="__nav_1" id="__nav_1_label" tabindex="0">
  183. <span class="md-nav__icon md-icon"></span>
  184. </label>
  185. </div>
  186. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_1_label" aria-expanded="false">
  187. <label class="md-nav__title" for="__nav_1">
  188. <span class="md-nav__icon md-icon"></span>
  189. Introduction
  190. </label>
  191. <ul class="md-nav__list" data-md-scrollfix>
  192. <li class="md-nav__item">
  193. <a href="../../introduction/overview/" class="md-nav__link">
  194. <span class="md-ellipsis">
  195. Overview
  196. </span>
  197. </a>
  198. </li>
  199. <li class="md-nav__item">
  200. <a href="../../introduction/glossary/" class="md-nav__link">
  201. <span class="md-ellipsis">
  202. Glossary
  203. </span>
  204. </a>
  205. </li>
  206. <li class="md-nav__item">
  207. <a href="../../introduction/prerequisites/" class="md-nav__link">
  208. <span class="md-ellipsis">
  209. Prerequisites
  210. </span>
  211. </a>
  212. </li>
  213. <li class="md-nav__item">
  214. <a href="../../introduction/getting-started/" class="md-nav__link">
  215. <span class="md-ellipsis">
  216. Getting started
  217. </span>
  218. </a>
  219. </li>
  220. <li class="md-nav__item">
  221. <a href="../../introduction/faq/" class="md-nav__link">
  222. <span class="md-ellipsis">
  223. FAQ
  224. </span>
  225. </a>
  226. </li>
  227. <li class="md-nav__item">
  228. <a href="../../introduction/stability-support/" class="md-nav__link">
  229. <span class="md-ellipsis">
  230. Stability and Support
  231. </span>
  232. </a>
  233. </li>
  234. <li class="md-nav__item">
  235. <a href="../../introduction/deprecation-policy/" class="md-nav__link">
  236. <span class="md-ellipsis">
  237. Deprecation Policy
  238. </span>
  239. </a>
  240. </li>
  241. </ul>
  242. </nav>
  243. </li>
  244. <li class="md-nav__item md-nav__item--active md-nav__item--section md-nav__item--nested">
  245. <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2" checked>
  246. <label class="md-nav__link" for="__nav_2" id="__nav_2_label" tabindex="">
  247. <span class="md-ellipsis">
  248. API
  249. </span>
  250. <span class="md-nav__icon md-icon"></span>
  251. </label>
  252. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_2_label" aria-expanded="true">
  253. <label class="md-nav__title" for="__nav_2">
  254. <span class="md-nav__icon md-icon"></span>
  255. API
  256. </label>
  257. <ul class="md-nav__list" data-md-scrollfix>
  258. <li class="md-nav__item">
  259. <a href="../components/" class="md-nav__link">
  260. <span class="md-ellipsis">
  261. Components
  262. </span>
  263. </a>
  264. </li>
  265. <li class="md-nav__item md-nav__item--nested">
  266. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_2_2" >
  267. <label class="md-nav__link" for="__nav_2_2" id="__nav_2_2_label" tabindex="0">
  268. <span class="md-ellipsis">
  269. Core Resources
  270. </span>
  271. <span class="md-nav__icon md-icon"></span>
  272. </label>
  273. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_2_2_label" aria-expanded="false">
  274. <label class="md-nav__title" for="__nav_2_2">
  275. <span class="md-nav__icon md-icon"></span>
  276. Core Resources
  277. </label>
  278. <ul class="md-nav__list" data-md-scrollfix>
  279. <li class="md-nav__item">
  280. <a href="../externalsecret/" class="md-nav__link">
  281. <span class="md-ellipsis">
  282. ExternalSecret
  283. </span>
  284. </a>
  285. </li>
  286. <li class="md-nav__item">
  287. <a href="../secretstore/" class="md-nav__link">
  288. <span class="md-ellipsis">
  289. SecretStore
  290. </span>
  291. </a>
  292. </li>
  293. <li class="md-nav__item">
  294. <a href="../clustersecretstore/" class="md-nav__link">
  295. <span class="md-ellipsis">
  296. ClusterSecretStore
  297. </span>
  298. </a>
  299. </li>
  300. <li class="md-nav__item">
  301. <a href="../clusterexternalsecret/" class="md-nav__link">
  302. <span class="md-ellipsis">
  303. ClusterExternalSecret
  304. </span>
  305. </a>
  306. </li>
  307. <li class="md-nav__item">
  308. <a href="../clusterpushsecret/" class="md-nav__link">
  309. <span class="md-ellipsis">
  310. ClusterPushSecret
  311. </span>
  312. </a>
  313. </li>
  314. <li class="md-nav__item">
  315. <a href="../pushsecret/" class="md-nav__link">
  316. <span class="md-ellipsis">
  317. PushSecret
  318. </span>
  319. </a>
  320. </li>
  321. </ul>
  322. </nav>
  323. </li>
  324. <li class="md-nav__item md-nav__item--nested">
  325. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_2_3" >
  326. <div class="md-nav__link md-nav__container">
  327. <a href="../generator/" class="md-nav__link ">
  328. <span class="md-ellipsis">
  329. Generators
  330. </span>
  331. </a>
  332. <label class="md-nav__link " for="__nav_2_3" id="__nav_2_3_label" tabindex="0">
  333. <span class="md-nav__icon md-icon"></span>
  334. </label>
  335. </div>
  336. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_2_3_label" aria-expanded="false">
  337. <label class="md-nav__title" for="__nav_2_3">
  338. <span class="md-nav__icon md-icon"></span>
  339. Generators
  340. </label>
  341. <ul class="md-nav__list" data-md-scrollfix>
  342. <li class="md-nav__item">
  343. <a href="../generator/acr/" class="md-nav__link">
  344. <span class="md-ellipsis">
  345. Azure Container Registry
  346. </span>
  347. </a>
  348. </li>
  349. <li class="md-nav__item">
  350. <a href="../generator/ecr/" class="md-nav__link">
  351. <span class="md-ellipsis">
  352. AWS Elastic Container Registry
  353. </span>
  354. </a>
  355. </li>
  356. <li class="md-nav__item">
  357. <a href="../generator/sts/" class="md-nav__link">
  358. <span class="md-ellipsis">
  359. AWS STS Session Token
  360. </span>
  361. </a>
  362. </li>
  363. <li class="md-nav__item">
  364. <a href="../generator/cluster/" class="md-nav__link">
  365. <span class="md-ellipsis">
  366. Cluster Generator
  367. </span>
  368. </a>
  369. </li>
  370. <li class="md-nav__item">
  371. <a href="../generator/gcr/" class="md-nav__link">
  372. <span class="md-ellipsis">
  373. Google Container Registry
  374. </span>
  375. </a>
  376. </li>
  377. <li class="md-nav__item">
  378. <a href="../generator/quay/" class="md-nav__link">
  379. <span class="md-ellipsis">
  380. Quay
  381. </span>
  382. </a>
  383. </li>
  384. <li class="md-nav__item">
  385. <a href="../generator/vault/" class="md-nav__link">
  386. <span class="md-ellipsis">
  387. Vault Dynamic Secret
  388. </span>
  389. </a>
  390. </li>
  391. <li class="md-nav__item">
  392. <a href="../generator/password/" class="md-nav__link">
  393. <span class="md-ellipsis">
  394. Password
  395. </span>
  396. </a>
  397. </li>
  398. <li class="md-nav__item">
  399. <a href="../generator/fake/" class="md-nav__link">
  400. <span class="md-ellipsis">
  401. Fake
  402. </span>
  403. </a>
  404. </li>
  405. <li class="md-nav__item">
  406. <a href="../generator/webhook/" class="md-nav__link">
  407. <span class="md-ellipsis">
  408. Webhook
  409. </span>
  410. </a>
  411. </li>
  412. <li class="md-nav__item">
  413. <a href="../generator/github/" class="md-nav__link">
  414. <span class="md-ellipsis">
  415. Github
  416. </span>
  417. </a>
  418. </li>
  419. <li class="md-nav__item">
  420. <a href="../generator/uuid/" class="md-nav__link">
  421. <span class="md-ellipsis">
  422. UUID
  423. </span>
  424. </a>
  425. </li>
  426. </ul>
  427. </nav>
  428. </li>
  429. <li class="md-nav__item md-nav__item--active md-nav__item--nested">
  430. <input class="md-nav__toggle md-toggle " type="checkbox" id="__nav_2_4" checked>
  431. <label class="md-nav__link" for="__nav_2_4" id="__nav_2_4_label" tabindex="0">
  432. <span class="md-ellipsis">
  433. Reference Docs
  434. </span>
  435. <span class="md-nav__icon md-icon"></span>
  436. </label>
  437. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_2_4_label" aria-expanded="true">
  438. <label class="md-nav__title" for="__nav_2_4">
  439. <span class="md-nav__icon md-icon"></span>
  440. Reference Docs
  441. </label>
  442. <ul class="md-nav__list" data-md-scrollfix>
  443. <li class="md-nav__item md-nav__item--active">
  444. <input class="md-nav__toggle md-toggle" type="checkbox" id="__toc">
  445. <a href="./" class="md-nav__link md-nav__link--active">
  446. <span class="md-ellipsis">
  447. API specification
  448. </span>
  449. </a>
  450. </li>
  451. <li class="md-nav__item">
  452. <a href="../controller-options/" class="md-nav__link">
  453. <span class="md-ellipsis">
  454. Controller Options
  455. </span>
  456. </a>
  457. </li>
  458. <li class="md-nav__item">
  459. <a href="../metrics/" class="md-nav__link">
  460. <span class="md-ellipsis">
  461. Metrics
  462. </span>
  463. </a>
  464. </li>
  465. </ul>
  466. </nav>
  467. </li>
  468. </ul>
  469. </nav>
  470. </li>
  471. <li class="md-nav__item md-nav__item--nested">
  472. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_3" >
  473. <label class="md-nav__link" for="__nav_3" id="__nav_3_label" tabindex="0">
  474. <span class="md-ellipsis">
  475. Guides
  476. </span>
  477. <span class="md-nav__icon md-icon"></span>
  478. </label>
  479. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_3_label" aria-expanded="false">
  480. <label class="md-nav__title" for="__nav_3">
  481. <span class="md-nav__icon md-icon"></span>
  482. Guides
  483. </label>
  484. <ul class="md-nav__list" data-md-scrollfix>
  485. <li class="md-nav__item">
  486. <a href="../../guides/introduction/" class="md-nav__link">
  487. <span class="md-ellipsis">
  488. Introduction
  489. </span>
  490. </a>
  491. </li>
  492. <li class="md-nav__item md-nav__item--nested">
  493. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_3_2" >
  494. <label class="md-nav__link" for="__nav_3_2" id="__nav_3_2_label" tabindex="0">
  495. <span class="md-ellipsis">
  496. External Secrets
  497. </span>
  498. <span class="md-nav__icon md-icon"></span>
  499. </label>
  500. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_3_2_label" aria-expanded="false">
  501. <label class="md-nav__title" for="__nav_3_2">
  502. <span class="md-nav__icon md-icon"></span>
  503. External Secrets
  504. </label>
  505. <ul class="md-nav__list" data-md-scrollfix>
  506. <li class="md-nav__item">
  507. <a href="../../guides/all-keys-one-secret/" class="md-nav__link">
  508. <span class="md-ellipsis">
  509. Extract structured data
  510. </span>
  511. </a>
  512. </li>
  513. <li class="md-nav__item">
  514. <a href="../../guides/getallsecrets/" class="md-nav__link">
  515. <span class="md-ellipsis">
  516. Find Secrets by Name or Metadata
  517. </span>
  518. </a>
  519. </li>
  520. <li class="md-nav__item">
  521. <a href="../../guides/datafrom-rewrite/" class="md-nav__link">
  522. <span class="md-ellipsis">
  523. Rewriting Keys
  524. </span>
  525. </a>
  526. </li>
  527. <li class="md-nav__item md-nav__item--nested">
  528. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_3_2_4" >
  529. <label class="md-nav__link" for="__nav_3_2_4" id="__nav_3_2_4_label" tabindex="0">
  530. <span class="md-ellipsis">
  531. Advanced Templating
  532. </span>
  533. <span class="md-nav__icon md-icon"></span>
  534. </label>
  535. <nav class="md-nav" data-md-level="3" aria-labelledby="__nav_3_2_4_label" aria-expanded="false">
  536. <label class="md-nav__title" for="__nav_3_2_4">
  537. <span class="md-nav__icon md-icon"></span>
  538. Advanced Templating
  539. </label>
  540. <ul class="md-nav__list" data-md-scrollfix>
  541. <li class="md-nav__item">
  542. <a href="../../guides/templating/" class="md-nav__link">
  543. <span class="md-ellipsis">
  544. v2
  545. </span>
  546. </a>
  547. </li>
  548. <li class="md-nav__item">
  549. <a href="../../guides/templating-v1/" class="md-nav__link">
  550. <span class="md-ellipsis">
  551. v1
  552. </span>
  553. </a>
  554. </li>
  555. </ul>
  556. </nav>
  557. </li>
  558. <li class="md-nav__item">
  559. <a href="../../guides/common-k8s-secret-types/" class="md-nav__link">
  560. <span class="md-ellipsis">
  561. Kubernetes Secret Types
  562. </span>
  563. </a>
  564. </li>
  565. <li class="md-nav__item">
  566. <a href="../../guides/ownership-deletion-policy/" class="md-nav__link">
  567. <span class="md-ellipsis">
  568. Lifecycle: ownership & deletion
  569. </span>
  570. </a>
  571. </li>
  572. <li class="md-nav__item">
  573. <a href="../../guides/decoding-strategy/" class="md-nav__link">
  574. <span class="md-ellipsis">
  575. Decoding Strategies
  576. </span>
  577. </a>
  578. </li>
  579. <li class="md-nav__item">
  580. <a href="../../guides/controller-class/" class="md-nav__link">
  581. <span class="md-ellipsis">
  582. Controller Classes
  583. </span>
  584. </a>
  585. </li>
  586. </ul>
  587. </nav>
  588. </li>
  589. <li class="md-nav__item">
  590. <a href="../../guides/generator/" class="md-nav__link">
  591. <span class="md-ellipsis">
  592. Generators
  593. </span>
  594. </a>
  595. </li>
  596. <li class="md-nav__item">
  597. <a href="../../guides/pushsecrets/" class="md-nav__link">
  598. <span class="md-ellipsis">
  599. Push Secrets
  600. </span>
  601. </a>
  602. </li>
  603. <li class="md-nav__item md-nav__item--nested">
  604. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_3_5" >
  605. <label class="md-nav__link" for="__nav_3_5" id="__nav_3_5_label" tabindex="0">
  606. <span class="md-ellipsis">
  607. Operations
  608. </span>
  609. <span class="md-nav__icon md-icon"></span>
  610. </label>
  611. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_3_5_label" aria-expanded="false">
  612. <label class="md-nav__title" for="__nav_3_5">
  613. <span class="md-nav__icon md-icon"></span>
  614. Operations
  615. </label>
  616. <ul class="md-nav__list" data-md-scrollfix>
  617. <li class="md-nav__item">
  618. <a href="../../guides/multi-tenancy/" class="md-nav__link">
  619. <span class="md-ellipsis">
  620. Multi Tenancy
  621. </span>
  622. </a>
  623. </li>
  624. <li class="md-nav__item">
  625. <a href="../../guides/security-best-practices/" class="md-nav__link">
  626. <span class="md-ellipsis">
  627. Security Best Practices
  628. </span>
  629. </a>
  630. </li>
  631. <li class="md-nav__item">
  632. <a href="../../guides/threat-model/" class="md-nav__link">
  633. <span class="md-ellipsis">
  634. Threat Model
  635. </span>
  636. </a>
  637. </li>
  638. <li class="md-nav__item">
  639. <a href="../../guides/v1beta1/" class="md-nav__link">
  640. <span class="md-ellipsis">
  641. Upgrading to v1beta1
  642. </span>
  643. </a>
  644. </li>
  645. <li class="md-nav__item">
  646. <a href="../../guides/using-latest-image/" class="md-nav__link">
  647. <span class="md-ellipsis">
  648. Using Latest Image
  649. </span>
  650. </a>
  651. </li>
  652. <li class="md-nav__item">
  653. <a href="../../guides/disable-cluster-features/" class="md-nav__link">
  654. <span class="md-ellipsis">
  655. Disable Cluster Features
  656. </span>
  657. </a>
  658. </li>
  659. </ul>
  660. </nav>
  661. </li>
  662. <li class="md-nav__item md-nav__item--nested">
  663. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_3_6" >
  664. <label class="md-nav__link" for="__nav_3_6" id="__nav_3_6_label" tabindex="0">
  665. <span class="md-ellipsis">
  666. Tooling
  667. </span>
  668. <span class="md-nav__icon md-icon"></span>
  669. </label>
  670. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_3_6_label" aria-expanded="false">
  671. <label class="md-nav__title" for="__nav_3_6">
  672. <span class="md-nav__icon md-icon"></span>
  673. Tooling
  674. </label>
  675. <ul class="md-nav__list" data-md-scrollfix>
  676. <li class="md-nav__item">
  677. <a href="../../guides/using-esoctl-tool/" class="md-nav__link">
  678. <span class="md-ellipsis">
  679. Using the esoctl tool
  680. </span>
  681. </a>
  682. </li>
  683. </ul>
  684. </nav>
  685. </li>
  686. </ul>
  687. </nav>
  688. </li>
  689. <li class="md-nav__item md-nav__item--nested">
  690. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_4" >
  691. <label class="md-nav__link" for="__nav_4" id="__nav_4_label" tabindex="0">
  692. <span class="md-ellipsis">
  693. Provider
  694. </span>
  695. <span class="md-nav__icon md-icon"></span>
  696. </label>
  697. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_4_label" aria-expanded="false">
  698. <label class="md-nav__title" for="__nav_4">
  699. <span class="md-nav__icon md-icon"></span>
  700. Provider
  701. </label>
  702. <ul class="md-nav__list" data-md-scrollfix>
  703. <li class="md-nav__item">
  704. <a href="../../provider/aws-secrets-manager/" class="md-nav__link">
  705. <span class="md-ellipsis">
  706. AWS Secrets Manager
  707. </span>
  708. </a>
  709. </li>
  710. <li class="md-nav__item">
  711. <a href="../../provider/aws-parameter-store/" class="md-nav__link">
  712. <span class="md-ellipsis">
  713. AWS Parameter Store
  714. </span>
  715. </a>
  716. </li>
  717. <li class="md-nav__item">
  718. <a href="../../provider/azure-key-vault/" class="md-nav__link">
  719. <span class="md-ellipsis">
  720. Azure Key Vault
  721. </span>
  722. </a>
  723. </li>
  724. <li class="md-nav__item">
  725. <a href="../../provider/beyondtrust/" class="md-nav__link">
  726. <span class="md-ellipsis">
  727. BeyondTrust
  728. </span>
  729. </a>
  730. </li>
  731. <li class="md-nav__item">
  732. <a href="../../provider/bitwarden-secrets-manager/" class="md-nav__link">
  733. <span class="md-ellipsis">
  734. Bitwarden Secrets Manager
  735. </span>
  736. </a>
  737. </li>
  738. <li class="md-nav__item">
  739. <a href="../../provider/chef/" class="md-nav__link">
  740. <span class="md-ellipsis">
  741. Chef
  742. </span>
  743. </a>
  744. </li>
  745. <li class="md-nav__item">
  746. <a href="../../provider/cloudru/" class="md-nav__link">
  747. <span class="md-ellipsis">
  748. Cloud.ru Secret Manager
  749. </span>
  750. </a>
  751. </li>
  752. <li class="md-nav__item">
  753. <a href="../../provider/conjur/" class="md-nav__link">
  754. <span class="md-ellipsis">
  755. CyberArk Conjur
  756. </span>
  757. </a>
  758. </li>
  759. <li class="md-nav__item">
  760. <a href="../../provider/device42/" class="md-nav__link">
  761. <span class="md-ellipsis">
  762. Device42
  763. </span>
  764. </a>
  765. </li>
  766. <li class="md-nav__item">
  767. <a href="../../provider/google-secrets-manager/" class="md-nav__link">
  768. <span class="md-ellipsis">
  769. Google Cloud Secret Manager
  770. </span>
  771. </a>
  772. </li>
  773. <li class="md-nav__item">
  774. <a href="../../provider/hashicorp-vault/" class="md-nav__link">
  775. <span class="md-ellipsis">
  776. HashiCorp Vault
  777. </span>
  778. </a>
  779. </li>
  780. <li class="md-nav__item">
  781. <a href="../../provider/kubernetes/" class="md-nav__link">
  782. <span class="md-ellipsis">
  783. Kubernetes
  784. </span>
  785. </a>
  786. </li>
  787. <li class="md-nav__item">
  788. <a href="../../provider/ibm-secrets-manager/" class="md-nav__link">
  789. <span class="md-ellipsis">
  790. IBM Secrets Manager
  791. </span>
  792. </a>
  793. </li>
  794. <li class="md-nav__item">
  795. <a href="../../provider/akeyless/" class="md-nav__link">
  796. <span class="md-ellipsis">
  797. Akeyless
  798. </span>
  799. </a>
  800. </li>
  801. <li class="md-nav__item">
  802. <a href="../../provider/yandex-certificate-manager/" class="md-nav__link">
  803. <span class="md-ellipsis">
  804. Yandex Certificate Manager
  805. </span>
  806. </a>
  807. </li>
  808. <li class="md-nav__item">
  809. <a href="../../provider/yandex-lockbox/" class="md-nav__link">
  810. <span class="md-ellipsis">
  811. Yandex Lockbox
  812. </span>
  813. </a>
  814. </li>
  815. <li class="md-nav__item">
  816. <a href="../../provider/alibaba/" class="md-nav__link">
  817. <span class="md-ellipsis">
  818. Alibaba Cloud
  819. </span>
  820. </a>
  821. </li>
  822. <li class="md-nav__item">
  823. <a href="../../provider/gitlab-variables/" class="md-nav__link">
  824. <span class="md-ellipsis">
  825. GitLab Variables
  826. </span>
  827. </a>
  828. </li>
  829. <li class="md-nav__item">
  830. <a href="../../provider/github/" class="md-nav__link">
  831. <span class="md-ellipsis">
  832. Github Actions Secrets
  833. </span>
  834. </a>
  835. </li>
  836. <li class="md-nav__item">
  837. <a href="../../provider/oracle-vault/" class="md-nav__link">
  838. <span class="md-ellipsis">
  839. Oracle Vault
  840. </span>
  841. </a>
  842. </li>
  843. <li class="md-nav__item">
  844. <a href="../../provider/1password-automation/" class="md-nav__link">
  845. <span class="md-ellipsis">
  846. 1Password Connect Server
  847. </span>
  848. </a>
  849. </li>
  850. <li class="md-nav__item">
  851. <a href="../../provider/1password-sdk/" class="md-nav__link">
  852. <span class="md-ellipsis">
  853. 1Password SDK
  854. </span>
  855. </a>
  856. </li>
  857. <li class="md-nav__item">
  858. <a href="../../provider/webhook/" class="md-nav__link">
  859. <span class="md-ellipsis">
  860. Webhook
  861. </span>
  862. </a>
  863. </li>
  864. <li class="md-nav__item">
  865. <a href="../../provider/fake/" class="md-nav__link">
  866. <span class="md-ellipsis">
  867. Fake
  868. </span>
  869. </a>
  870. </li>
  871. <li class="md-nav__item">
  872. <a href="../../provider/senhasegura-dsm/" class="md-nav__link">
  873. <span class="md-ellipsis">
  874. senhasegura DevOps Secrets Management (DSM)
  875. </span>
  876. </a>
  877. </li>
  878. <li class="md-nav__item">
  879. <a href="../../provider/doppler/" class="md-nav__link">
  880. <span class="md-ellipsis">
  881. Doppler
  882. </span>
  883. </a>
  884. </li>
  885. <li class="md-nav__item">
  886. <a href="../../provider/keeper-security/" class="md-nav__link">
  887. <span class="md-ellipsis">
  888. Keeper Security
  889. </span>
  890. </a>
  891. </li>
  892. <li class="md-nav__item">
  893. <a href="../../provider/cloak/" class="md-nav__link">
  894. <span class="md-ellipsis">
  895. Cloak End 2 End Encrypted Secrets
  896. </span>
  897. </a>
  898. </li>
  899. <li class="md-nav__item">
  900. <a href="../../provider/scaleway/" class="md-nav__link">
  901. <span class="md-ellipsis">
  902. Scaleway
  903. </span>
  904. </a>
  905. </li>
  906. <li class="md-nav__item">
  907. <a href="../../provider/delinea/" class="md-nav__link">
  908. <span class="md-ellipsis">
  909. Delinea
  910. </span>
  911. </a>
  912. </li>
  913. <li class="md-nav__item">
  914. <a href="../../provider/secretserver/" class="md-nav__link">
  915. <span class="md-ellipsis">
  916. Secret Server
  917. </span>
  918. </a>
  919. </li>
  920. <li class="md-nav__item">
  921. <a href="../../provider/passbolt/" class="md-nav__link">
  922. <span class="md-ellipsis">
  923. Passbolt
  924. </span>
  925. </a>
  926. </li>
  927. <li class="md-nav__item">
  928. <a href="../../provider/pulumi/" class="md-nav__link">
  929. <span class="md-ellipsis">
  930. Pulumi ESC
  931. </span>
  932. </a>
  933. </li>
  934. <li class="md-nav__item">
  935. <a href="../../provider/onboardbase/" class="md-nav__link">
  936. <span class="md-ellipsis">
  937. Onboardbase
  938. </span>
  939. </a>
  940. </li>
  941. <li class="md-nav__item">
  942. <a href="../../provider-passworddepot/" class="md-nav__link">
  943. <span class="md-ellipsis">
  944. Password Depot
  945. </span>
  946. </a>
  947. </li>
  948. <li class="md-nav__item">
  949. <a href="../../provider/fortanix/" class="md-nav__link">
  950. <span class="md-ellipsis">
  951. Fortanix
  952. </span>
  953. </a>
  954. </li>
  955. <li class="md-nav__item">
  956. <a href="../../provider/infisical/" class="md-nav__link">
  957. <span class="md-ellipsis">
  958. Infisical
  959. </span>
  960. </a>
  961. </li>
  962. <li class="md-nav__item">
  963. <a href="../../provider/previder/" class="md-nav__link">
  964. <span class="md-ellipsis">
  965. Previder
  966. </span>
  967. </a>
  968. </li>
  969. <li class="md-nav__item">
  970. <a href="../../provider/openbao/" class="md-nav__link">
  971. <span class="md-ellipsis">
  972. OpenBao
  973. </span>
  974. </a>
  975. </li>
  976. </ul>
  977. </nav>
  978. </li>
  979. <li class="md-nav__item md-nav__item--nested">
  980. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_5" >
  981. <label class="md-nav__link" for="__nav_5" id="__nav_5_label" tabindex="0">
  982. <span class="md-ellipsis">
  983. Examples
  984. </span>
  985. <span class="md-nav__icon md-icon"></span>
  986. </label>
  987. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_5_label" aria-expanded="false">
  988. <label class="md-nav__title" for="__nav_5">
  989. <span class="md-nav__icon md-icon"></span>
  990. Examples
  991. </label>
  992. <ul class="md-nav__list" data-md-scrollfix>
  993. <li class="md-nav__item">
  994. <a href="../../examples/gitops-using-fluxcd/" class="md-nav__link">
  995. <span class="md-ellipsis">
  996. FluxCD
  997. </span>
  998. </a>
  999. </li>
  1000. <li class="md-nav__item">
  1001. <a href="../../examples/anchore-engine-credentials/" class="md-nav__link">
  1002. <span class="md-ellipsis">
  1003. Anchore Engine
  1004. </span>
  1005. </a>
  1006. </li>
  1007. <li class="md-nav__item">
  1008. <a href="../../examples/jenkins-kubernetes-credentials/" class="md-nav__link">
  1009. <span class="md-ellipsis">
  1010. Jenkins
  1011. </span>
  1012. </a>
  1013. </li>
  1014. <li class="md-nav__item">
  1015. <a href="../../examples/bitwarden/" class="md-nav__link">
  1016. <span class="md-ellipsis">
  1017. Bitwarden
  1018. </span>
  1019. </a>
  1020. </li>
  1021. </ul>
  1022. </nav>
  1023. </li>
  1024. <li class="md-nav__item md-nav__item--nested">
  1025. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_6" >
  1026. <label class="md-nav__link" for="__nav_6" id="__nav_6_label" tabindex="0">
  1027. <span class="md-ellipsis">
  1028. Community
  1029. </span>
  1030. <span class="md-nav__icon md-icon"></span>
  1031. </label>
  1032. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_6_label" aria-expanded="false">
  1033. <label class="md-nav__title" for="__nav_6">
  1034. <span class="md-nav__icon md-icon"></span>
  1035. Community
  1036. </label>
  1037. <ul class="md-nav__list" data-md-scrollfix>
  1038. <li class="md-nav__item md-nav__item--nested">
  1039. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_6_1" >
  1040. <label class="md-nav__link" for="__nav_6_1" id="__nav_6_1_label" tabindex="0">
  1041. <span class="md-ellipsis">
  1042. Contributing
  1043. </span>
  1044. <span class="md-nav__icon md-icon"></span>
  1045. </label>
  1046. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_6_1_label" aria-expanded="false">
  1047. <label class="md-nav__title" for="__nav_6_1">
  1048. <span class="md-nav__icon md-icon"></span>
  1049. Contributing
  1050. </label>
  1051. <ul class="md-nav__list" data-md-scrollfix>
  1052. <li class="md-nav__item">
  1053. <a href="../../contributing/devguide/" class="md-nav__link">
  1054. <span class="md-ellipsis">
  1055. Developer guide
  1056. </span>
  1057. </a>
  1058. </li>
  1059. <li class="md-nav__item">
  1060. <a href="../../contributing/process/" class="md-nav__link">
  1061. <span class="md-ellipsis">
  1062. Contributing Process
  1063. </span>
  1064. </a>
  1065. </li>
  1066. <li class="md-nav__item">
  1067. <a href="../../contributing/release/" class="md-nav__link">
  1068. <span class="md-ellipsis">
  1069. Release Process
  1070. </span>
  1071. </a>
  1072. </li>
  1073. <li class="md-nav__item">
  1074. <a href="../../contributing/coc/" class="md-nav__link">
  1075. <span class="md-ellipsis">
  1076. Code of Conduct
  1077. </span>
  1078. </a>
  1079. </li>
  1080. <li class="md-nav__item">
  1081. <a href="../../contributing/calendar/" class="md-nav__link">
  1082. <span class="md-ellipsis">
  1083. Community meetings calendar
  1084. </span>
  1085. </a>
  1086. </li>
  1087. <li class="md-nav__item">
  1088. <a href="../../contributing/roadmap/" class="md-nav__link">
  1089. <span class="md-ellipsis">
  1090. Roadmap
  1091. </span>
  1092. </a>
  1093. </li>
  1094. </ul>
  1095. </nav>
  1096. </li>
  1097. <li class="md-nav__item md-nav__item--nested">
  1098. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_6_2" >
  1099. <label class="md-nav__link" for="__nav_6_2" id="__nav_6_2_label" tabindex="0">
  1100. <span class="md-ellipsis">
  1101. External Resources
  1102. </span>
  1103. <span class="md-nav__icon md-icon"></span>
  1104. </label>
  1105. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_6_2_label" aria-expanded="false">
  1106. <label class="md-nav__title" for="__nav_6_2">
  1107. <span class="md-nav__icon md-icon"></span>
  1108. External Resources
  1109. </label>
  1110. <ul class="md-nav__list" data-md-scrollfix>
  1111. <li class="md-nav__item">
  1112. <a href="../../eso-talks/" class="md-nav__link">
  1113. <span class="md-ellipsis">
  1114. Talks
  1115. </span>
  1116. </a>
  1117. </li>
  1118. <li class="md-nav__item">
  1119. <a href="../../eso-demos/" class="md-nav__link">
  1120. <span class="md-ellipsis">
  1121. Demos
  1122. </span>
  1123. </a>
  1124. </li>
  1125. <li class="md-nav__item">
  1126. <a href="../../eso-blogs/" class="md-nav__link">
  1127. <span class="md-ellipsis">
  1128. Blogs
  1129. </span>
  1130. </a>
  1131. </li>
  1132. <li class="md-nav__item">
  1133. <a href="../../eso-tools/" class="md-nav__link">
  1134. <span class="md-ellipsis">
  1135. Tools
  1136. </span>
  1137. </a>
  1138. </li>
  1139. </ul>
  1140. </nav>
  1141. </li>
  1142. </ul>
  1143. </nav>
  1144. </li>
  1145. </ul>
  1146. </nav>
  1147. </div>
  1148. </div>
  1149. </div>
  1150. <div class="md-sidebar md-sidebar--secondary" data-md-component="sidebar" data-md-type="toc" >
  1151. <div class="md-sidebar__scrollwrap">
  1152. <div class="md-sidebar__inner">
  1153. <nav class="md-nav md-nav--secondary" aria-label="Table of contents">
  1154. </nav>
  1155. </div>
  1156. </div>
  1157. </div>
  1158. <div class="md-content" data-md-component="content">
  1159. <article class="md-content__inner md-typeset">
  1160. <h1>API specification</h1>
  1161. <p>Packages:</p>
  1162. <ul>
  1163. <li>
  1164. <a href="#external-secrets.io%2fv1">external-secrets.io/v1</a>
  1165. </li>
  1166. </ul>
  1167. <h2 id="external-secrets.io/v1">external-secrets.io/v1</h2>
  1168. <p>
  1169. <p>Package v1 contains resources for external-secrets</p>
  1170. </p>
  1171. <p>Resource Types:</p>
  1172. <ul></ul>
  1173. <h3 id="external-secrets.io/v1.AWSAuth">AWSAuth
  1174. </h3>
  1175. <p>
  1176. (<em>Appears on:</em>
  1177. <a href="#external-secrets.io/v1.AWSProvider">AWSProvider</a>)
  1178. </p>
  1179. <p>
  1180. <p>AWSAuth tells the controller how to do authentication with aws.
  1181. Only one of secretRef or jwt can be specified.
  1182. if none is specified the controller will load credentials using the aws sdk defaults.</p>
  1183. </p>
  1184. <table>
  1185. <thead>
  1186. <tr>
  1187. <th>Field</th>
  1188. <th>Description</th>
  1189. </tr>
  1190. </thead>
  1191. <tbody>
  1192. <tr>
  1193. <td>
  1194. <code>secretRef</code></br>
  1195. <em>
  1196. <a href="#external-secrets.io/v1.AWSAuthSecretRef">
  1197. AWSAuthSecretRef
  1198. </a>
  1199. </em>
  1200. </td>
  1201. <td>
  1202. <em>(Optional)</em>
  1203. </td>
  1204. </tr>
  1205. <tr>
  1206. <td>
  1207. <code>jwt</code></br>
  1208. <em>
  1209. <a href="#external-secrets.io/v1.AWSJWTAuth">
  1210. AWSJWTAuth
  1211. </a>
  1212. </em>
  1213. </td>
  1214. <td>
  1215. <em>(Optional)</em>
  1216. </td>
  1217. </tr>
  1218. </tbody>
  1219. </table>
  1220. <h3 id="external-secrets.io/v1.AWSAuthSecretRef">AWSAuthSecretRef
  1221. </h3>
  1222. <p>
  1223. (<em>Appears on:</em>
  1224. <a href="#external-secrets.io/v1.AWSAuth">AWSAuth</a>)
  1225. </p>
  1226. <p>
  1227. <p>AWSAuthSecretRef holds secret references for AWS credentials
  1228. both AccessKeyID and SecretAccessKey must be defined in order to properly authenticate.</p>
  1229. </p>
  1230. <table>
  1231. <thead>
  1232. <tr>
  1233. <th>Field</th>
  1234. <th>Description</th>
  1235. </tr>
  1236. </thead>
  1237. <tbody>
  1238. <tr>
  1239. <td>
  1240. <code>accessKeyIDSecretRef</code></br>
  1241. <em>
  1242. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1243. External Secrets meta/v1.SecretKeySelector
  1244. </a>
  1245. </em>
  1246. </td>
  1247. <td>
  1248. <p>The AccessKeyID is used for authentication</p>
  1249. </td>
  1250. </tr>
  1251. <tr>
  1252. <td>
  1253. <code>secretAccessKeySecretRef</code></br>
  1254. <em>
  1255. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1256. External Secrets meta/v1.SecretKeySelector
  1257. </a>
  1258. </em>
  1259. </td>
  1260. <td>
  1261. <p>The SecretAccessKey is used for authentication</p>
  1262. </td>
  1263. </tr>
  1264. <tr>
  1265. <td>
  1266. <code>sessionTokenSecretRef</code></br>
  1267. <em>
  1268. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1269. External Secrets meta/v1.SecretKeySelector
  1270. </a>
  1271. </em>
  1272. </td>
  1273. <td>
  1274. <p>The SessionToken used for authentication
  1275. This must be defined if AccessKeyID and SecretAccessKey are temporary credentials
  1276. see: <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_use-resources.html">https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_use-resources.html</a></p>
  1277. </td>
  1278. </tr>
  1279. </tbody>
  1280. </table>
  1281. <h3 id="external-secrets.io/v1.AWSJWTAuth">AWSJWTAuth
  1282. </h3>
  1283. <p>
  1284. (<em>Appears on:</em>
  1285. <a href="#external-secrets.io/v1.AWSAuth">AWSAuth</a>)
  1286. </p>
  1287. <p>
  1288. <p>Authenticate against AWS using service account tokens.</p>
  1289. </p>
  1290. <table>
  1291. <thead>
  1292. <tr>
  1293. <th>Field</th>
  1294. <th>Description</th>
  1295. </tr>
  1296. </thead>
  1297. <tbody>
  1298. <tr>
  1299. <td>
  1300. <code>serviceAccountRef</code></br>
  1301. <em>
  1302. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  1303. External Secrets meta/v1.ServiceAccountSelector
  1304. </a>
  1305. </em>
  1306. </td>
  1307. <td>
  1308. </td>
  1309. </tr>
  1310. </tbody>
  1311. </table>
  1312. <h3 id="external-secrets.io/v1.AWSProvider">AWSProvider
  1313. </h3>
  1314. <p>
  1315. (<em>Appears on:</em>
  1316. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  1317. </p>
  1318. <p>
  1319. <p>AWSProvider configures a store to sync secrets with AWS.</p>
  1320. </p>
  1321. <table>
  1322. <thead>
  1323. <tr>
  1324. <th>Field</th>
  1325. <th>Description</th>
  1326. </tr>
  1327. </thead>
  1328. <tbody>
  1329. <tr>
  1330. <td>
  1331. <code>service</code></br>
  1332. <em>
  1333. <a href="#external-secrets.io/v1.AWSServiceType">
  1334. AWSServiceType
  1335. </a>
  1336. </em>
  1337. </td>
  1338. <td>
  1339. <p>Service defines which service should be used to fetch the secrets</p>
  1340. </td>
  1341. </tr>
  1342. <tr>
  1343. <td>
  1344. <code>auth</code></br>
  1345. <em>
  1346. <a href="#external-secrets.io/v1.AWSAuth">
  1347. AWSAuth
  1348. </a>
  1349. </em>
  1350. </td>
  1351. <td>
  1352. <em>(Optional)</em>
  1353. <p>Auth defines the information necessary to authenticate against AWS
  1354. if not set aws sdk will infer credentials from your environment
  1355. see: <a href="https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials">https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials</a></p>
  1356. </td>
  1357. </tr>
  1358. <tr>
  1359. <td>
  1360. <code>role</code></br>
  1361. <em>
  1362. string
  1363. </em>
  1364. </td>
  1365. <td>
  1366. <em>(Optional)</em>
  1367. <p>Role is a Role ARN which the provider will assume</p>
  1368. </td>
  1369. </tr>
  1370. <tr>
  1371. <td>
  1372. <code>region</code></br>
  1373. <em>
  1374. string
  1375. </em>
  1376. </td>
  1377. <td>
  1378. <p>AWS Region to be used for the provider</p>
  1379. </td>
  1380. </tr>
  1381. <tr>
  1382. <td>
  1383. <code>additionalRoles</code></br>
  1384. <em>
  1385. []string
  1386. </em>
  1387. </td>
  1388. <td>
  1389. <em>(Optional)</em>
  1390. <p>AdditionalRoles is a chained list of Role ARNs which the provider will sequentially assume before assuming the Role</p>
  1391. </td>
  1392. </tr>
  1393. <tr>
  1394. <td>
  1395. <code>externalID</code></br>
  1396. <em>
  1397. string
  1398. </em>
  1399. </td>
  1400. <td>
  1401. <p>AWS External ID set on assumed IAM roles</p>
  1402. </td>
  1403. </tr>
  1404. <tr>
  1405. <td>
  1406. <code>sessionTags</code></br>
  1407. <em>
  1408. <a href="#external-secrets.io/v1.*github.com/external-secrets/external-secrets/apis/externalsecrets/v1.Tag">
  1409. []*github.com/external-secrets/external-secrets/apis/externalsecrets/v1.Tag
  1410. </a>
  1411. </em>
  1412. </td>
  1413. <td>
  1414. <em>(Optional)</em>
  1415. <p>AWS STS assume role session tags</p>
  1416. </td>
  1417. </tr>
  1418. <tr>
  1419. <td>
  1420. <code>secretsManager</code></br>
  1421. <em>
  1422. <a href="#external-secrets.io/v1.SecretsManager">
  1423. SecretsManager
  1424. </a>
  1425. </em>
  1426. </td>
  1427. <td>
  1428. <em>(Optional)</em>
  1429. <p>SecretsManager defines how the provider behaves when interacting with AWS SecretsManager</p>
  1430. </td>
  1431. </tr>
  1432. <tr>
  1433. <td>
  1434. <code>transitiveTagKeys</code></br>
  1435. <em>
  1436. []*string
  1437. </em>
  1438. </td>
  1439. <td>
  1440. <em>(Optional)</em>
  1441. <p>AWS STS assume role transitive session tags. Required when multiple rules are used with the provider</p>
  1442. </td>
  1443. </tr>
  1444. <tr>
  1445. <td>
  1446. <code>prefix</code></br>
  1447. <em>
  1448. string
  1449. </em>
  1450. </td>
  1451. <td>
  1452. <em>(Optional)</em>
  1453. <p>Prefix adds a prefix to all retrieved values.</p>
  1454. </td>
  1455. </tr>
  1456. </tbody>
  1457. </table>
  1458. <h3 id="external-secrets.io/v1.AWSServiceType">AWSServiceType
  1459. (<code>string</code> alias)</p></h3>
  1460. <p>
  1461. (<em>Appears on:</em>
  1462. <a href="#external-secrets.io/v1.AWSProvider">AWSProvider</a>)
  1463. </p>
  1464. <p>
  1465. <p>AWSServiceType is a enum that defines the service/API that is used to fetch the secrets.</p>
  1466. </p>
  1467. <table>
  1468. <thead>
  1469. <tr>
  1470. <th>Value</th>
  1471. <th>Description</th>
  1472. </tr>
  1473. </thead>
  1474. <tbody><tr><td><p>&#34;ParameterStore&#34;</p></td>
  1475. <td><p>AWSServiceParameterStore is the AWS SystemsManager ParameterStore service.
  1476. see: <a href="https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-parameter-store.html">https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-parameter-store.html</a></p>
  1477. </td>
  1478. </tr><tr><td><p>&#34;SecretsManager&#34;</p></td>
  1479. <td><p>AWSServiceSecretsManager is the AWS SecretsManager service.
  1480. see: <a href="https://docs.aws.amazon.com/secretsmanager/latest/userguide/intro.html">https://docs.aws.amazon.com/secretsmanager/latest/userguide/intro.html</a></p>
  1481. </td>
  1482. </tr></tbody>
  1483. </table>
  1484. <h3 id="external-secrets.io/v1.AkeylessAuth">AkeylessAuth
  1485. </h3>
  1486. <p>
  1487. (<em>Appears on:</em>
  1488. <a href="#external-secrets.io/v1.AkeylessProvider">AkeylessProvider</a>)
  1489. </p>
  1490. <p>
  1491. </p>
  1492. <table>
  1493. <thead>
  1494. <tr>
  1495. <th>Field</th>
  1496. <th>Description</th>
  1497. </tr>
  1498. </thead>
  1499. <tbody>
  1500. <tr>
  1501. <td>
  1502. <code>secretRef</code></br>
  1503. <em>
  1504. <a href="#external-secrets.io/v1.AkeylessAuthSecretRef">
  1505. AkeylessAuthSecretRef
  1506. </a>
  1507. </em>
  1508. </td>
  1509. <td>
  1510. <em>(Optional)</em>
  1511. <p>Reference to a Secret that contains the details
  1512. to authenticate with Akeyless.</p>
  1513. </td>
  1514. </tr>
  1515. <tr>
  1516. <td>
  1517. <code>kubernetesAuth</code></br>
  1518. <em>
  1519. <a href="#external-secrets.io/v1.AkeylessKubernetesAuth">
  1520. AkeylessKubernetesAuth
  1521. </a>
  1522. </em>
  1523. </td>
  1524. <td>
  1525. <em>(Optional)</em>
  1526. <p>Kubernetes authenticates with Akeyless by passing the ServiceAccount
  1527. token stored in the named Secret resource.</p>
  1528. </td>
  1529. </tr>
  1530. </tbody>
  1531. </table>
  1532. <h3 id="external-secrets.io/v1.AkeylessAuthSecretRef">AkeylessAuthSecretRef
  1533. </h3>
  1534. <p>
  1535. (<em>Appears on:</em>
  1536. <a href="#external-secrets.io/v1.AkeylessAuth">AkeylessAuth</a>)
  1537. </p>
  1538. <p>
  1539. <p>AkeylessAuthSecretRef
  1540. AKEYLESS_ACCESS_TYPE_PARAM: AZURE_OBJ_ID OR GCP_AUDIENCE OR ACCESS_KEY OR KUB_CONFIG_NAME.</p>
  1541. </p>
  1542. <table>
  1543. <thead>
  1544. <tr>
  1545. <th>Field</th>
  1546. <th>Description</th>
  1547. </tr>
  1548. </thead>
  1549. <tbody>
  1550. <tr>
  1551. <td>
  1552. <code>accessID</code></br>
  1553. <em>
  1554. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1555. External Secrets meta/v1.SecretKeySelector
  1556. </a>
  1557. </em>
  1558. </td>
  1559. <td>
  1560. <p>The SecretAccessID is used for authentication</p>
  1561. </td>
  1562. </tr>
  1563. <tr>
  1564. <td>
  1565. <code>accessType</code></br>
  1566. <em>
  1567. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1568. External Secrets meta/v1.SecretKeySelector
  1569. </a>
  1570. </em>
  1571. </td>
  1572. <td>
  1573. </td>
  1574. </tr>
  1575. <tr>
  1576. <td>
  1577. <code>accessTypeParam</code></br>
  1578. <em>
  1579. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1580. External Secrets meta/v1.SecretKeySelector
  1581. </a>
  1582. </em>
  1583. </td>
  1584. <td>
  1585. </td>
  1586. </tr>
  1587. </tbody>
  1588. </table>
  1589. <h3 id="external-secrets.io/v1.AkeylessKubernetesAuth">AkeylessKubernetesAuth
  1590. </h3>
  1591. <p>
  1592. (<em>Appears on:</em>
  1593. <a href="#external-secrets.io/v1.AkeylessAuth">AkeylessAuth</a>)
  1594. </p>
  1595. <p>
  1596. <p>Authenticate with Kubernetes ServiceAccount token stored.</p>
  1597. </p>
  1598. <table>
  1599. <thead>
  1600. <tr>
  1601. <th>Field</th>
  1602. <th>Description</th>
  1603. </tr>
  1604. </thead>
  1605. <tbody>
  1606. <tr>
  1607. <td>
  1608. <code>accessID</code></br>
  1609. <em>
  1610. string
  1611. </em>
  1612. </td>
  1613. <td>
  1614. <p>the Akeyless Kubernetes auth-method access-id</p>
  1615. </td>
  1616. </tr>
  1617. <tr>
  1618. <td>
  1619. <code>k8sConfName</code></br>
  1620. <em>
  1621. string
  1622. </em>
  1623. </td>
  1624. <td>
  1625. <p>Kubernetes-auth configuration name in Akeyless-Gateway</p>
  1626. </td>
  1627. </tr>
  1628. <tr>
  1629. <td>
  1630. <code>serviceAccountRef</code></br>
  1631. <em>
  1632. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  1633. External Secrets meta/v1.ServiceAccountSelector
  1634. </a>
  1635. </em>
  1636. </td>
  1637. <td>
  1638. <em>(Optional)</em>
  1639. <p>Optional service account field containing the name of a kubernetes ServiceAccount.
  1640. If the service account is specified, the service account secret token JWT will be used
  1641. for authenticating with Akeyless. If the service account selector is not supplied,
  1642. the secretRef will be used instead.</p>
  1643. </td>
  1644. </tr>
  1645. <tr>
  1646. <td>
  1647. <code>secretRef</code></br>
  1648. <em>
  1649. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1650. External Secrets meta/v1.SecretKeySelector
  1651. </a>
  1652. </em>
  1653. </td>
  1654. <td>
  1655. <em>(Optional)</em>
  1656. <p>Optional secret field containing a Kubernetes ServiceAccount JWT used
  1657. for authenticating with Akeyless. If a name is specified without a key,
  1658. <code>token</code> is the default. If one is not specified, the one bound to
  1659. the controller will be used.</p>
  1660. </td>
  1661. </tr>
  1662. </tbody>
  1663. </table>
  1664. <h3 id="external-secrets.io/v1.AkeylessProvider">AkeylessProvider
  1665. </h3>
  1666. <p>
  1667. (<em>Appears on:</em>
  1668. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  1669. </p>
  1670. <p>
  1671. <p>AkeylessProvider Configures an store to sync secrets using Akeyless KV.</p>
  1672. </p>
  1673. <table>
  1674. <thead>
  1675. <tr>
  1676. <th>Field</th>
  1677. <th>Description</th>
  1678. </tr>
  1679. </thead>
  1680. <tbody>
  1681. <tr>
  1682. <td>
  1683. <code>akeylessGWApiURL</code></br>
  1684. <em>
  1685. string
  1686. </em>
  1687. </td>
  1688. <td>
  1689. <p>Akeyless GW API Url from which the secrets to be fetched from.</p>
  1690. </td>
  1691. </tr>
  1692. <tr>
  1693. <td>
  1694. <code>authSecretRef</code></br>
  1695. <em>
  1696. <a href="#external-secrets.io/v1.AkeylessAuth">
  1697. AkeylessAuth
  1698. </a>
  1699. </em>
  1700. </td>
  1701. <td>
  1702. <p>Auth configures how the operator authenticates with Akeyless.</p>
  1703. </td>
  1704. </tr>
  1705. <tr>
  1706. <td>
  1707. <code>caBundle</code></br>
  1708. <em>
  1709. []byte
  1710. </em>
  1711. </td>
  1712. <td>
  1713. <em>(Optional)</em>
  1714. <p>PEM/base64 encoded CA bundle used to validate Akeyless Gateway certificate. Only used
  1715. if the AkeylessGWApiURL URL is using HTTPS protocol. If not set the system root certificates
  1716. are used to validate the TLS connection.</p>
  1717. </td>
  1718. </tr>
  1719. <tr>
  1720. <td>
  1721. <code>caProvider</code></br>
  1722. <em>
  1723. <a href="#external-secrets.io/v1.CAProvider">
  1724. CAProvider
  1725. </a>
  1726. </em>
  1727. </td>
  1728. <td>
  1729. <em>(Optional)</em>
  1730. <p>The provider for the CA bundle to use to validate Akeyless Gateway certificate.</p>
  1731. </td>
  1732. </tr>
  1733. </tbody>
  1734. </table>
  1735. <h3 id="external-secrets.io/v1.AlibabaAuth">AlibabaAuth
  1736. </h3>
  1737. <p>
  1738. (<em>Appears on:</em>
  1739. <a href="#external-secrets.io/v1.AlibabaProvider">AlibabaProvider</a>)
  1740. </p>
  1741. <p>
  1742. <p>AlibabaAuth contains a secretRef for credentials.</p>
  1743. </p>
  1744. <table>
  1745. <thead>
  1746. <tr>
  1747. <th>Field</th>
  1748. <th>Description</th>
  1749. </tr>
  1750. </thead>
  1751. <tbody>
  1752. <tr>
  1753. <td>
  1754. <code>secretRef</code></br>
  1755. <em>
  1756. <a href="#external-secrets.io/v1.AlibabaAuthSecretRef">
  1757. AlibabaAuthSecretRef
  1758. </a>
  1759. </em>
  1760. </td>
  1761. <td>
  1762. <em>(Optional)</em>
  1763. </td>
  1764. </tr>
  1765. <tr>
  1766. <td>
  1767. <code>rrsa</code></br>
  1768. <em>
  1769. <a href="#external-secrets.io/v1.AlibabaRRSAAuth">
  1770. AlibabaRRSAAuth
  1771. </a>
  1772. </em>
  1773. </td>
  1774. <td>
  1775. <em>(Optional)</em>
  1776. </td>
  1777. </tr>
  1778. </tbody>
  1779. </table>
  1780. <h3 id="external-secrets.io/v1.AlibabaAuthSecretRef">AlibabaAuthSecretRef
  1781. </h3>
  1782. <p>
  1783. (<em>Appears on:</em>
  1784. <a href="#external-secrets.io/v1.AlibabaAuth">AlibabaAuth</a>)
  1785. </p>
  1786. <p>
  1787. <p>AlibabaAuthSecretRef holds secret references for Alibaba credentials.</p>
  1788. </p>
  1789. <table>
  1790. <thead>
  1791. <tr>
  1792. <th>Field</th>
  1793. <th>Description</th>
  1794. </tr>
  1795. </thead>
  1796. <tbody>
  1797. <tr>
  1798. <td>
  1799. <code>accessKeyIDSecretRef</code></br>
  1800. <em>
  1801. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1802. External Secrets meta/v1.SecretKeySelector
  1803. </a>
  1804. </em>
  1805. </td>
  1806. <td>
  1807. <p>The AccessKeyID is used for authentication</p>
  1808. </td>
  1809. </tr>
  1810. <tr>
  1811. <td>
  1812. <code>accessKeySecretSecretRef</code></br>
  1813. <em>
  1814. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  1815. External Secrets meta/v1.SecretKeySelector
  1816. </a>
  1817. </em>
  1818. </td>
  1819. <td>
  1820. <p>The AccessKeySecret is used for authentication</p>
  1821. </td>
  1822. </tr>
  1823. </tbody>
  1824. </table>
  1825. <h3 id="external-secrets.io/v1.AlibabaProvider">AlibabaProvider
  1826. </h3>
  1827. <p>
  1828. (<em>Appears on:</em>
  1829. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  1830. </p>
  1831. <p>
  1832. <p>AlibabaProvider configures a store to sync secrets using the Alibaba Secret Manager provider.</p>
  1833. </p>
  1834. <table>
  1835. <thead>
  1836. <tr>
  1837. <th>Field</th>
  1838. <th>Description</th>
  1839. </tr>
  1840. </thead>
  1841. <tbody>
  1842. <tr>
  1843. <td>
  1844. <code>auth</code></br>
  1845. <em>
  1846. <a href="#external-secrets.io/v1.AlibabaAuth">
  1847. AlibabaAuth
  1848. </a>
  1849. </em>
  1850. </td>
  1851. <td>
  1852. </td>
  1853. </tr>
  1854. <tr>
  1855. <td>
  1856. <code>regionID</code></br>
  1857. <em>
  1858. string
  1859. </em>
  1860. </td>
  1861. <td>
  1862. <p>Alibaba Region to be used for the provider</p>
  1863. </td>
  1864. </tr>
  1865. </tbody>
  1866. </table>
  1867. <h3 id="external-secrets.io/v1.AlibabaRRSAAuth">AlibabaRRSAAuth
  1868. </h3>
  1869. <p>
  1870. (<em>Appears on:</em>
  1871. <a href="#external-secrets.io/v1.AlibabaAuth">AlibabaAuth</a>)
  1872. </p>
  1873. <p>
  1874. <p>Authenticate against Alibaba using RRSA.</p>
  1875. </p>
  1876. <table>
  1877. <thead>
  1878. <tr>
  1879. <th>Field</th>
  1880. <th>Description</th>
  1881. </tr>
  1882. </thead>
  1883. <tbody>
  1884. <tr>
  1885. <td>
  1886. <code>oidcProviderArn</code></br>
  1887. <em>
  1888. string
  1889. </em>
  1890. </td>
  1891. <td>
  1892. </td>
  1893. </tr>
  1894. <tr>
  1895. <td>
  1896. <code>oidcTokenFilePath</code></br>
  1897. <em>
  1898. string
  1899. </em>
  1900. </td>
  1901. <td>
  1902. </td>
  1903. </tr>
  1904. <tr>
  1905. <td>
  1906. <code>roleArn</code></br>
  1907. <em>
  1908. string
  1909. </em>
  1910. </td>
  1911. <td>
  1912. </td>
  1913. </tr>
  1914. <tr>
  1915. <td>
  1916. <code>sessionName</code></br>
  1917. <em>
  1918. string
  1919. </em>
  1920. </td>
  1921. <td>
  1922. </td>
  1923. </tr>
  1924. </tbody>
  1925. </table>
  1926. <h3 id="external-secrets.io/v1.AuthorizationProtocol">AuthorizationProtocol
  1927. </h3>
  1928. <p>
  1929. (<em>Appears on:</em>
  1930. <a href="#external-secrets.io/v1.WebhookProvider">WebhookProvider</a>)
  1931. </p>
  1932. <p>
  1933. <p>AuthorizationProtocol contains the protocol-specific configuration</p>
  1934. </p>
  1935. <table>
  1936. <thead>
  1937. <tr>
  1938. <th>Field</th>
  1939. <th>Description</th>
  1940. </tr>
  1941. </thead>
  1942. <tbody>
  1943. <tr>
  1944. <td>
  1945. <code>ntlm</code></br>
  1946. <em>
  1947. <a href="#external-secrets.io/v1.NTLMProtocol">
  1948. NTLMProtocol
  1949. </a>
  1950. </em>
  1951. </td>
  1952. <td>
  1953. <em>(Optional)</em>
  1954. <p>NTLMProtocol configures the store to use NTLM for auth</p>
  1955. </td>
  1956. </tr>
  1957. </tbody>
  1958. </table>
  1959. <h3 id="external-secrets.io/v1.AzureAuthType">AzureAuthType
  1960. (<code>string</code> alias)</p></h3>
  1961. <p>
  1962. (<em>Appears on:</em>
  1963. <a href="#external-secrets.io/v1.AzureKVProvider">AzureKVProvider</a>)
  1964. </p>
  1965. <p>
  1966. <p>AuthType describes how to authenticate to the Azure Keyvault
  1967. Only one of the following auth types may be specified.
  1968. If none of the following auth type is specified, the default one
  1969. is ServicePrincipal.</p>
  1970. </p>
  1971. <table>
  1972. <thead>
  1973. <tr>
  1974. <th>Value</th>
  1975. <th>Description</th>
  1976. </tr>
  1977. </thead>
  1978. <tbody><tr><td><p>&#34;ManagedIdentity&#34;</p></td>
  1979. <td><p>Using Managed Identity to authenticate. Used with aad-pod-identity installed in the cluster.</p>
  1980. </td>
  1981. </tr><tr><td><p>&#34;ServicePrincipal&#34;</p></td>
  1982. <td><p>Using service principal to authenticate, which needs a tenantId, a clientId and a clientSecret.</p>
  1983. </td>
  1984. </tr><tr><td><p>&#34;WorkloadIdentity&#34;</p></td>
  1985. <td><p>Using Workload Identity service accounts to authenticate.</p>
  1986. </td>
  1987. </tr></tbody>
  1988. </table>
  1989. <h3 id="external-secrets.io/v1.AzureEnvironmentType">AzureEnvironmentType
  1990. (<code>string</code> alias)</p></h3>
  1991. <p>
  1992. (<em>Appears on:</em>
  1993. <a href="#external-secrets.io/v1.AzureKVProvider">AzureKVProvider</a>)
  1994. </p>
  1995. <p>
  1996. <p>AzureEnvironmentType specifies the Azure cloud environment endpoints to use for
  1997. connecting and authenticating with Azure. By default it points to the public cloud AAD endpoint.
  1998. The following endpoints are available, also see here: <a href="https://github.com/Azure/go-autorest/blob/main/autorest/azure/environments.go#L152">https://github.com/Azure/go-autorest/blob/main/autorest/azure/environments.go#L152</a>
  1999. PublicCloud, USGovernmentCloud, ChinaCloud, GermanCloud</p>
  2000. </p>
  2001. <table>
  2002. <thead>
  2003. <tr>
  2004. <th>Value</th>
  2005. <th>Description</th>
  2006. </tr>
  2007. </thead>
  2008. <tbody><tr><td><p>&#34;ChinaCloud&#34;</p></td>
  2009. <td></td>
  2010. </tr><tr><td><p>&#34;GermanCloud&#34;</p></td>
  2011. <td></td>
  2012. </tr><tr><td><p>&#34;PublicCloud&#34;</p></td>
  2013. <td></td>
  2014. </tr><tr><td><p>&#34;USGovernmentCloud&#34;</p></td>
  2015. <td></td>
  2016. </tr></tbody>
  2017. </table>
  2018. <h3 id="external-secrets.io/v1.AzureKVAuth">AzureKVAuth
  2019. </h3>
  2020. <p>
  2021. (<em>Appears on:</em>
  2022. <a href="#external-secrets.io/v1.AzureKVProvider">AzureKVProvider</a>)
  2023. </p>
  2024. <p>
  2025. <p>Configuration used to authenticate with Azure.</p>
  2026. </p>
  2027. <table>
  2028. <thead>
  2029. <tr>
  2030. <th>Field</th>
  2031. <th>Description</th>
  2032. </tr>
  2033. </thead>
  2034. <tbody>
  2035. <tr>
  2036. <td>
  2037. <code>clientId</code></br>
  2038. <em>
  2039. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2040. External Secrets meta/v1.SecretKeySelector
  2041. </a>
  2042. </em>
  2043. </td>
  2044. <td>
  2045. <em>(Optional)</em>
  2046. <p>The Azure clientId of the service principle or managed identity used for authentication.</p>
  2047. </td>
  2048. </tr>
  2049. <tr>
  2050. <td>
  2051. <code>tenantId</code></br>
  2052. <em>
  2053. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2054. External Secrets meta/v1.SecretKeySelector
  2055. </a>
  2056. </em>
  2057. </td>
  2058. <td>
  2059. <em>(Optional)</em>
  2060. <p>The Azure tenantId of the managed identity used for authentication.</p>
  2061. </td>
  2062. </tr>
  2063. <tr>
  2064. <td>
  2065. <code>clientSecret</code></br>
  2066. <em>
  2067. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2068. External Secrets meta/v1.SecretKeySelector
  2069. </a>
  2070. </em>
  2071. </td>
  2072. <td>
  2073. <em>(Optional)</em>
  2074. <p>The Azure ClientSecret of the service principle used for authentication.</p>
  2075. </td>
  2076. </tr>
  2077. <tr>
  2078. <td>
  2079. <code>clientCertificate</code></br>
  2080. <em>
  2081. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2082. External Secrets meta/v1.SecretKeySelector
  2083. </a>
  2084. </em>
  2085. </td>
  2086. <td>
  2087. <em>(Optional)</em>
  2088. <p>The Azure ClientCertificate of the service principle used for authentication.</p>
  2089. </td>
  2090. </tr>
  2091. </tbody>
  2092. </table>
  2093. <h3 id="external-secrets.io/v1.AzureKVProvider">AzureKVProvider
  2094. </h3>
  2095. <p>
  2096. (<em>Appears on:</em>
  2097. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  2098. </p>
  2099. <p>
  2100. <p>Configures an store to sync secrets using Azure KV.</p>
  2101. </p>
  2102. <table>
  2103. <thead>
  2104. <tr>
  2105. <th>Field</th>
  2106. <th>Description</th>
  2107. </tr>
  2108. </thead>
  2109. <tbody>
  2110. <tr>
  2111. <td>
  2112. <code>authType</code></br>
  2113. <em>
  2114. <a href="#external-secrets.io/v1.AzureAuthType">
  2115. AzureAuthType
  2116. </a>
  2117. </em>
  2118. </td>
  2119. <td>
  2120. <em>(Optional)</em>
  2121. <p>Auth type defines how to authenticate to the keyvault service.
  2122. Valid values are:
  2123. - &ldquo;ServicePrincipal&rdquo; (default): Using a service principal (tenantId, clientId, clientSecret)
  2124. - &ldquo;ManagedIdentity&rdquo;: Using Managed Identity assigned to the pod (see aad-pod-identity)</p>
  2125. </td>
  2126. </tr>
  2127. <tr>
  2128. <td>
  2129. <code>vaultUrl</code></br>
  2130. <em>
  2131. string
  2132. </em>
  2133. </td>
  2134. <td>
  2135. <p>Vault Url from which the secrets to be fetched from.</p>
  2136. </td>
  2137. </tr>
  2138. <tr>
  2139. <td>
  2140. <code>tenantId</code></br>
  2141. <em>
  2142. string
  2143. </em>
  2144. </td>
  2145. <td>
  2146. <em>(Optional)</em>
  2147. <p>TenantID configures the Azure Tenant to send requests to. Required for ServicePrincipal auth type. Optional for WorkloadIdentity.</p>
  2148. </td>
  2149. </tr>
  2150. <tr>
  2151. <td>
  2152. <code>environmentType</code></br>
  2153. <em>
  2154. <a href="#external-secrets.io/v1.AzureEnvironmentType">
  2155. AzureEnvironmentType
  2156. </a>
  2157. </em>
  2158. </td>
  2159. <td>
  2160. <p>EnvironmentType specifies the Azure cloud environment endpoints to use for
  2161. connecting and authenticating with Azure. By default it points to the public cloud AAD endpoint.
  2162. The following endpoints are available, also see here: <a href="https://github.com/Azure/go-autorest/blob/main/autorest/azure/environments.go#L152">https://github.com/Azure/go-autorest/blob/main/autorest/azure/environments.go#L152</a>
  2163. PublicCloud, USGovernmentCloud, ChinaCloud, GermanCloud</p>
  2164. </td>
  2165. </tr>
  2166. <tr>
  2167. <td>
  2168. <code>authSecretRef</code></br>
  2169. <em>
  2170. <a href="#external-secrets.io/v1.AzureKVAuth">
  2171. AzureKVAuth
  2172. </a>
  2173. </em>
  2174. </td>
  2175. <td>
  2176. <em>(Optional)</em>
  2177. <p>Auth configures how the operator authenticates with Azure. Required for ServicePrincipal auth type. Optional for WorkloadIdentity.</p>
  2178. </td>
  2179. </tr>
  2180. <tr>
  2181. <td>
  2182. <code>serviceAccountRef</code></br>
  2183. <em>
  2184. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  2185. External Secrets meta/v1.ServiceAccountSelector
  2186. </a>
  2187. </em>
  2188. </td>
  2189. <td>
  2190. <em>(Optional)</em>
  2191. <p>ServiceAccountRef specified the service account
  2192. that should be used when authenticating with WorkloadIdentity.</p>
  2193. </td>
  2194. </tr>
  2195. <tr>
  2196. <td>
  2197. <code>identityId</code></br>
  2198. <em>
  2199. string
  2200. </em>
  2201. </td>
  2202. <td>
  2203. <em>(Optional)</em>
  2204. <p>If multiple Managed Identity is assigned to the pod, you can select the one to be used</p>
  2205. </td>
  2206. </tr>
  2207. </tbody>
  2208. </table>
  2209. <h3 id="external-secrets.io/v1.BeyondTrustProviderSecretRef">BeyondTrustProviderSecretRef
  2210. </h3>
  2211. <p>
  2212. (<em>Appears on:</em>
  2213. <a href="#external-secrets.io/v1.BeyondtrustAuth">BeyondtrustAuth</a>)
  2214. </p>
  2215. <p>
  2216. </p>
  2217. <table>
  2218. <thead>
  2219. <tr>
  2220. <th>Field</th>
  2221. <th>Description</th>
  2222. </tr>
  2223. </thead>
  2224. <tbody>
  2225. <tr>
  2226. <td>
  2227. <code>value</code></br>
  2228. <em>
  2229. string
  2230. </em>
  2231. </td>
  2232. <td>
  2233. <em>(Optional)</em>
  2234. <p>Value can be specified directly to set a value without using a secret.</p>
  2235. </td>
  2236. </tr>
  2237. <tr>
  2238. <td>
  2239. <code>secretRef</code></br>
  2240. <em>
  2241. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2242. External Secrets meta/v1.SecretKeySelector
  2243. </a>
  2244. </em>
  2245. </td>
  2246. <td>
  2247. <em>(Optional)</em>
  2248. <p>SecretRef references a key in a secret that will be used as value.</p>
  2249. </td>
  2250. </tr>
  2251. </tbody>
  2252. </table>
  2253. <h3 id="external-secrets.io/v1.BeyondtrustAuth">BeyondtrustAuth
  2254. </h3>
  2255. <p>
  2256. (<em>Appears on:</em>
  2257. <a href="#external-secrets.io/v1.BeyondtrustProvider">BeyondtrustProvider</a>)
  2258. </p>
  2259. <p>
  2260. <p>Configures a store to sync secrets using BeyondTrust Password Safe.</p>
  2261. </p>
  2262. <table>
  2263. <thead>
  2264. <tr>
  2265. <th>Field</th>
  2266. <th>Description</th>
  2267. </tr>
  2268. </thead>
  2269. <tbody>
  2270. <tr>
  2271. <td>
  2272. <code>apiKey</code></br>
  2273. <em>
  2274. <a href="#external-secrets.io/v1.BeyondTrustProviderSecretRef">
  2275. BeyondTrustProviderSecretRef
  2276. </a>
  2277. </em>
  2278. </td>
  2279. <td>
  2280. <p>APIKey If not provided then ClientID/ClientSecret become required.</p>
  2281. </td>
  2282. </tr>
  2283. <tr>
  2284. <td>
  2285. <code>clientId</code></br>
  2286. <em>
  2287. <a href="#external-secrets.io/v1.BeyondTrustProviderSecretRef">
  2288. BeyondTrustProviderSecretRef
  2289. </a>
  2290. </em>
  2291. </td>
  2292. <td>
  2293. <p>ClientID is the API OAuth Client ID.</p>
  2294. </td>
  2295. </tr>
  2296. <tr>
  2297. <td>
  2298. <code>clientSecret</code></br>
  2299. <em>
  2300. <a href="#external-secrets.io/v1.BeyondTrustProviderSecretRef">
  2301. BeyondTrustProviderSecretRef
  2302. </a>
  2303. </em>
  2304. </td>
  2305. <td>
  2306. <p>ClientSecret is the API OAuth Client Secret.</p>
  2307. </td>
  2308. </tr>
  2309. <tr>
  2310. <td>
  2311. <code>certificate</code></br>
  2312. <em>
  2313. <a href="#external-secrets.io/v1.BeyondTrustProviderSecretRef">
  2314. BeyondTrustProviderSecretRef
  2315. </a>
  2316. </em>
  2317. </td>
  2318. <td>
  2319. <p>Certificate (cert.pem) for use when authenticating with an OAuth client Id using a Client Certificate.</p>
  2320. </td>
  2321. </tr>
  2322. <tr>
  2323. <td>
  2324. <code>certificateKey</code></br>
  2325. <em>
  2326. <a href="#external-secrets.io/v1.BeyondTrustProviderSecretRef">
  2327. BeyondTrustProviderSecretRef
  2328. </a>
  2329. </em>
  2330. </td>
  2331. <td>
  2332. <p>Certificate private key (key.pem). For use when authenticating with an OAuth client Id</p>
  2333. </td>
  2334. </tr>
  2335. </tbody>
  2336. </table>
  2337. <h3 id="external-secrets.io/v1.BeyondtrustProvider">BeyondtrustProvider
  2338. </h3>
  2339. <p>
  2340. (<em>Appears on:</em>
  2341. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  2342. </p>
  2343. <p>
  2344. </p>
  2345. <table>
  2346. <thead>
  2347. <tr>
  2348. <th>Field</th>
  2349. <th>Description</th>
  2350. </tr>
  2351. </thead>
  2352. <tbody>
  2353. <tr>
  2354. <td>
  2355. <code>auth</code></br>
  2356. <em>
  2357. <a href="#external-secrets.io/v1.BeyondtrustAuth">
  2358. BeyondtrustAuth
  2359. </a>
  2360. </em>
  2361. </td>
  2362. <td>
  2363. <p>Auth configures how the operator authenticates with Beyondtrust.</p>
  2364. </td>
  2365. </tr>
  2366. <tr>
  2367. <td>
  2368. <code>server</code></br>
  2369. <em>
  2370. <a href="#external-secrets.io/v1.BeyondtrustServer">
  2371. BeyondtrustServer
  2372. </a>
  2373. </em>
  2374. </td>
  2375. <td>
  2376. <p>Auth configures how API server works.</p>
  2377. </td>
  2378. </tr>
  2379. </tbody>
  2380. </table>
  2381. <h3 id="external-secrets.io/v1.BeyondtrustServer">BeyondtrustServer
  2382. </h3>
  2383. <p>
  2384. (<em>Appears on:</em>
  2385. <a href="#external-secrets.io/v1.BeyondtrustProvider">BeyondtrustProvider</a>)
  2386. </p>
  2387. <p>
  2388. <p>Configures a store to sync secrets using BeyondTrust Password Safe.</p>
  2389. </p>
  2390. <table>
  2391. <thead>
  2392. <tr>
  2393. <th>Field</th>
  2394. <th>Description</th>
  2395. </tr>
  2396. </thead>
  2397. <tbody>
  2398. <tr>
  2399. <td>
  2400. <code>apiUrl</code></br>
  2401. <em>
  2402. string
  2403. </em>
  2404. </td>
  2405. <td>
  2406. </td>
  2407. </tr>
  2408. <tr>
  2409. <td>
  2410. <code>apiVersion</code></br>
  2411. <em>
  2412. string
  2413. </em>
  2414. </td>
  2415. <td>
  2416. </td>
  2417. </tr>
  2418. <tr>
  2419. <td>
  2420. <code>retrievalType</code></br>
  2421. <em>
  2422. string
  2423. </em>
  2424. </td>
  2425. <td>
  2426. <p>The secret retrieval type. SECRET = Secrets Safe (credential, text, file). MANAGED_ACCOUNT = Password Safe account associated with a system.</p>
  2427. </td>
  2428. </tr>
  2429. <tr>
  2430. <td>
  2431. <code>separator</code></br>
  2432. <em>
  2433. string
  2434. </em>
  2435. </td>
  2436. <td>
  2437. <p>A character that separates the folder names.</p>
  2438. </td>
  2439. </tr>
  2440. <tr>
  2441. <td>
  2442. <code>verifyCA</code></br>
  2443. <em>
  2444. bool
  2445. </em>
  2446. </td>
  2447. <td>
  2448. </td>
  2449. </tr>
  2450. <tr>
  2451. <td>
  2452. <code>clientTimeOutSeconds</code></br>
  2453. <em>
  2454. int
  2455. </em>
  2456. </td>
  2457. <td>
  2458. <p>Timeout specifies a time limit for requests made by this Client. The timeout includes connection time, any redirects, and reading the response body. Defaults to 45 seconds.</p>
  2459. </td>
  2460. </tr>
  2461. </tbody>
  2462. </table>
  2463. <h3 id="external-secrets.io/v1.BitwardenSecretsManagerAuth">BitwardenSecretsManagerAuth
  2464. </h3>
  2465. <p>
  2466. (<em>Appears on:</em>
  2467. <a href="#external-secrets.io/v1.BitwardenSecretsManagerProvider">BitwardenSecretsManagerProvider</a>)
  2468. </p>
  2469. <p>
  2470. <p>BitwardenSecretsManagerAuth contains the ref to the secret that contains the machine account token.</p>
  2471. </p>
  2472. <table>
  2473. <thead>
  2474. <tr>
  2475. <th>Field</th>
  2476. <th>Description</th>
  2477. </tr>
  2478. </thead>
  2479. <tbody>
  2480. <tr>
  2481. <td>
  2482. <code>secretRef</code></br>
  2483. <em>
  2484. <a href="#external-secrets.io/v1.BitwardenSecretsManagerSecretRef">
  2485. BitwardenSecretsManagerSecretRef
  2486. </a>
  2487. </em>
  2488. </td>
  2489. <td>
  2490. </td>
  2491. </tr>
  2492. </tbody>
  2493. </table>
  2494. <h3 id="external-secrets.io/v1.BitwardenSecretsManagerProvider">BitwardenSecretsManagerProvider
  2495. </h3>
  2496. <p>
  2497. (<em>Appears on:</em>
  2498. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  2499. </p>
  2500. <p>
  2501. <p>BitwardenSecretsManagerProvider configures a store to sync secrets with a Bitwarden Secrets Manager instance.</p>
  2502. </p>
  2503. <table>
  2504. <thead>
  2505. <tr>
  2506. <th>Field</th>
  2507. <th>Description</th>
  2508. </tr>
  2509. </thead>
  2510. <tbody>
  2511. <tr>
  2512. <td>
  2513. <code>apiURL</code></br>
  2514. <em>
  2515. string
  2516. </em>
  2517. </td>
  2518. <td>
  2519. </td>
  2520. </tr>
  2521. <tr>
  2522. <td>
  2523. <code>identityURL</code></br>
  2524. <em>
  2525. string
  2526. </em>
  2527. </td>
  2528. <td>
  2529. </td>
  2530. </tr>
  2531. <tr>
  2532. <td>
  2533. <code>bitwardenServerSDKURL</code></br>
  2534. <em>
  2535. string
  2536. </em>
  2537. </td>
  2538. <td>
  2539. </td>
  2540. </tr>
  2541. <tr>
  2542. <td>
  2543. <code>caBundle</code></br>
  2544. <em>
  2545. string
  2546. </em>
  2547. </td>
  2548. <td>
  2549. <em>(Optional)</em>
  2550. <p>Base64 encoded certificate for the bitwarden server sdk. The sdk MUST run with HTTPS to make sure no MITM attack
  2551. can be performed.</p>
  2552. </td>
  2553. </tr>
  2554. <tr>
  2555. <td>
  2556. <code>caProvider</code></br>
  2557. <em>
  2558. <a href="#external-secrets.io/v1.CAProvider">
  2559. CAProvider
  2560. </a>
  2561. </em>
  2562. </td>
  2563. <td>
  2564. <em>(Optional)</em>
  2565. <p>see: <a href="https://external-secrets.io/latest/spec/#external-secrets.io/v1alpha1.CAProvider">https://external-secrets.io/latest/spec/#external-secrets.io/v1alpha1.CAProvider</a></p>
  2566. </td>
  2567. </tr>
  2568. <tr>
  2569. <td>
  2570. <code>organizationID</code></br>
  2571. <em>
  2572. string
  2573. </em>
  2574. </td>
  2575. <td>
  2576. <p>OrganizationID determines which organization this secret store manages.</p>
  2577. </td>
  2578. </tr>
  2579. <tr>
  2580. <td>
  2581. <code>projectID</code></br>
  2582. <em>
  2583. string
  2584. </em>
  2585. </td>
  2586. <td>
  2587. <p>ProjectID determines which project this secret store manages.</p>
  2588. </td>
  2589. </tr>
  2590. <tr>
  2591. <td>
  2592. <code>auth</code></br>
  2593. <em>
  2594. <a href="#external-secrets.io/v1.BitwardenSecretsManagerAuth">
  2595. BitwardenSecretsManagerAuth
  2596. </a>
  2597. </em>
  2598. </td>
  2599. <td>
  2600. <p>Auth configures how secret-manager authenticates with a bitwarden machine account instance.
  2601. Make sure that the token being used has permissions on the given secret.</p>
  2602. </td>
  2603. </tr>
  2604. </tbody>
  2605. </table>
  2606. <h3 id="external-secrets.io/v1.BitwardenSecretsManagerSecretRef">BitwardenSecretsManagerSecretRef
  2607. </h3>
  2608. <p>
  2609. (<em>Appears on:</em>
  2610. <a href="#external-secrets.io/v1.BitwardenSecretsManagerAuth">BitwardenSecretsManagerAuth</a>)
  2611. </p>
  2612. <p>
  2613. <p>BitwardenSecretsManagerSecretRef contains the credential ref to the bitwarden instance.</p>
  2614. </p>
  2615. <table>
  2616. <thead>
  2617. <tr>
  2618. <th>Field</th>
  2619. <th>Description</th>
  2620. </tr>
  2621. </thead>
  2622. <tbody>
  2623. <tr>
  2624. <td>
  2625. <code>credentials</code></br>
  2626. <em>
  2627. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2628. External Secrets meta/v1.SecretKeySelector
  2629. </a>
  2630. </em>
  2631. </td>
  2632. <td>
  2633. <p>AccessToken used for the bitwarden instance.</p>
  2634. </td>
  2635. </tr>
  2636. </tbody>
  2637. </table>
  2638. <h3 id="external-secrets.io/v1.CAProvider">CAProvider
  2639. </h3>
  2640. <p>
  2641. (<em>Appears on:</em>
  2642. <a href="#external-secrets.io/v1.AkeylessProvider">AkeylessProvider</a>,
  2643. <a href="#external-secrets.io/v1.BitwardenSecretsManagerProvider">BitwardenSecretsManagerProvider</a>,
  2644. <a href="#external-secrets.io/v1.ConjurProvider">ConjurProvider</a>,
  2645. <a href="#external-secrets.io/v1.KubernetesServer">KubernetesServer</a>,
  2646. <a href="#external-secrets.io/v1.VaultProvider">VaultProvider</a>)
  2647. </p>
  2648. <p>
  2649. <p>Used to provide custom certificate authority (CA) certificates
  2650. for a secret store. The CAProvider points to a Secret or ConfigMap resource
  2651. that contains a PEM-encoded certificate.</p>
  2652. </p>
  2653. <table>
  2654. <thead>
  2655. <tr>
  2656. <th>Field</th>
  2657. <th>Description</th>
  2658. </tr>
  2659. </thead>
  2660. <tbody>
  2661. <tr>
  2662. <td>
  2663. <code>type</code></br>
  2664. <em>
  2665. <a href="#external-secrets.io/v1.CAProviderType">
  2666. CAProviderType
  2667. </a>
  2668. </em>
  2669. </td>
  2670. <td>
  2671. <p>The type of provider to use such as &ldquo;Secret&rdquo;, or &ldquo;ConfigMap&rdquo;.</p>
  2672. </td>
  2673. </tr>
  2674. <tr>
  2675. <td>
  2676. <code>name</code></br>
  2677. <em>
  2678. string
  2679. </em>
  2680. </td>
  2681. <td>
  2682. <p>The name of the object located at the provider type.</p>
  2683. </td>
  2684. </tr>
  2685. <tr>
  2686. <td>
  2687. <code>key</code></br>
  2688. <em>
  2689. string
  2690. </em>
  2691. </td>
  2692. <td>
  2693. <p>The key where the CA certificate can be found in the Secret or ConfigMap.</p>
  2694. </td>
  2695. </tr>
  2696. <tr>
  2697. <td>
  2698. <code>namespace</code></br>
  2699. <em>
  2700. string
  2701. </em>
  2702. </td>
  2703. <td>
  2704. <em>(Optional)</em>
  2705. <p>The namespace the Provider type is in.
  2706. Can only be defined when used in a ClusterSecretStore.</p>
  2707. </td>
  2708. </tr>
  2709. </tbody>
  2710. </table>
  2711. <h3 id="external-secrets.io/v1.CAProviderType">CAProviderType
  2712. (<code>string</code> alias)</p></h3>
  2713. <p>
  2714. (<em>Appears on:</em>
  2715. <a href="#external-secrets.io/v1.CAProvider">CAProvider</a>)
  2716. </p>
  2717. <p>
  2718. </p>
  2719. <table>
  2720. <thead>
  2721. <tr>
  2722. <th>Value</th>
  2723. <th>Description</th>
  2724. </tr>
  2725. </thead>
  2726. <tbody><tr><td><p>&#34;ConfigMap&#34;</p></td>
  2727. <td></td>
  2728. </tr><tr><td><p>&#34;Secret&#34;</p></td>
  2729. <td></td>
  2730. </tr></tbody>
  2731. </table>
  2732. <h3 id="external-secrets.io/v1.CSMAuth">CSMAuth
  2733. </h3>
  2734. <p>
  2735. (<em>Appears on:</em>
  2736. <a href="#external-secrets.io/v1.CloudruSMProvider">CloudruSMProvider</a>)
  2737. </p>
  2738. <p>
  2739. <p>CSMAuth contains a secretRef for credentials.</p>
  2740. </p>
  2741. <table>
  2742. <thead>
  2743. <tr>
  2744. <th>Field</th>
  2745. <th>Description</th>
  2746. </tr>
  2747. </thead>
  2748. <tbody>
  2749. <tr>
  2750. <td>
  2751. <code>secretRef</code></br>
  2752. <em>
  2753. <a href="#external-secrets.io/v1.CSMAuthSecretRef">
  2754. CSMAuthSecretRef
  2755. </a>
  2756. </em>
  2757. </td>
  2758. <td>
  2759. <em>(Optional)</em>
  2760. </td>
  2761. </tr>
  2762. </tbody>
  2763. </table>
  2764. <h3 id="external-secrets.io/v1.CSMAuthSecretRef">CSMAuthSecretRef
  2765. </h3>
  2766. <p>
  2767. (<em>Appears on:</em>
  2768. <a href="#external-secrets.io/v1.CSMAuth">CSMAuth</a>)
  2769. </p>
  2770. <p>
  2771. <p>CSMAuthSecretRef holds secret references for Cloud.ru credentials.</p>
  2772. </p>
  2773. <table>
  2774. <thead>
  2775. <tr>
  2776. <th>Field</th>
  2777. <th>Description</th>
  2778. </tr>
  2779. </thead>
  2780. <tbody>
  2781. <tr>
  2782. <td>
  2783. <code>accessKeyIDSecretRef</code></br>
  2784. <em>
  2785. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2786. External Secrets meta/v1.SecretKeySelector
  2787. </a>
  2788. </em>
  2789. </td>
  2790. <td>
  2791. <p>The AccessKeyID is used for authentication</p>
  2792. </td>
  2793. </tr>
  2794. <tr>
  2795. <td>
  2796. <code>accessKeySecretSecretRef</code></br>
  2797. <em>
  2798. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2799. External Secrets meta/v1.SecretKeySelector
  2800. </a>
  2801. </em>
  2802. </td>
  2803. <td>
  2804. <p>The AccessKeySecret is used for authentication</p>
  2805. </td>
  2806. </tr>
  2807. </tbody>
  2808. </table>
  2809. <h3 id="external-secrets.io/v1.CertAuth">CertAuth
  2810. </h3>
  2811. <p>
  2812. (<em>Appears on:</em>
  2813. <a href="#external-secrets.io/v1.KubernetesAuth">KubernetesAuth</a>)
  2814. </p>
  2815. <p>
  2816. </p>
  2817. <table>
  2818. <thead>
  2819. <tr>
  2820. <th>Field</th>
  2821. <th>Description</th>
  2822. </tr>
  2823. </thead>
  2824. <tbody>
  2825. <tr>
  2826. <td>
  2827. <code>clientCert</code></br>
  2828. <em>
  2829. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2830. External Secrets meta/v1.SecretKeySelector
  2831. </a>
  2832. </em>
  2833. </td>
  2834. <td>
  2835. </td>
  2836. </tr>
  2837. <tr>
  2838. <td>
  2839. <code>clientKey</code></br>
  2840. <em>
  2841. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2842. External Secrets meta/v1.SecretKeySelector
  2843. </a>
  2844. </em>
  2845. </td>
  2846. <td>
  2847. </td>
  2848. </tr>
  2849. </tbody>
  2850. </table>
  2851. <h3 id="external-secrets.io/v1.ChefAuth">ChefAuth
  2852. </h3>
  2853. <p>
  2854. (<em>Appears on:</em>
  2855. <a href="#external-secrets.io/v1.ChefProvider">ChefProvider</a>)
  2856. </p>
  2857. <p>
  2858. <p>ChefAuth contains a secretRef for credentials.</p>
  2859. </p>
  2860. <table>
  2861. <thead>
  2862. <tr>
  2863. <th>Field</th>
  2864. <th>Description</th>
  2865. </tr>
  2866. </thead>
  2867. <tbody>
  2868. <tr>
  2869. <td>
  2870. <code>secretRef</code></br>
  2871. <em>
  2872. <a href="#external-secrets.io/v1.ChefAuthSecretRef">
  2873. ChefAuthSecretRef
  2874. </a>
  2875. </em>
  2876. </td>
  2877. <td>
  2878. </td>
  2879. </tr>
  2880. </tbody>
  2881. </table>
  2882. <h3 id="external-secrets.io/v1.ChefAuthSecretRef">ChefAuthSecretRef
  2883. </h3>
  2884. <p>
  2885. (<em>Appears on:</em>
  2886. <a href="#external-secrets.io/v1.ChefAuth">ChefAuth</a>)
  2887. </p>
  2888. <p>
  2889. <p>ChefAuthSecretRef holds secret references for chef server login credentials.</p>
  2890. </p>
  2891. <table>
  2892. <thead>
  2893. <tr>
  2894. <th>Field</th>
  2895. <th>Description</th>
  2896. </tr>
  2897. </thead>
  2898. <tbody>
  2899. <tr>
  2900. <td>
  2901. <code>privateKeySecretRef</code></br>
  2902. <em>
  2903. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  2904. External Secrets meta/v1.SecretKeySelector
  2905. </a>
  2906. </em>
  2907. </td>
  2908. <td>
  2909. <p>SecretKey is the Signing Key in PEM format, used for authentication.</p>
  2910. </td>
  2911. </tr>
  2912. </tbody>
  2913. </table>
  2914. <h3 id="external-secrets.io/v1.ChefProvider">ChefProvider
  2915. </h3>
  2916. <p>
  2917. (<em>Appears on:</em>
  2918. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  2919. </p>
  2920. <p>
  2921. <p>ChefProvider configures a store to sync secrets using basic chef server connection credentials.</p>
  2922. </p>
  2923. <table>
  2924. <thead>
  2925. <tr>
  2926. <th>Field</th>
  2927. <th>Description</th>
  2928. </tr>
  2929. </thead>
  2930. <tbody>
  2931. <tr>
  2932. <td>
  2933. <code>auth</code></br>
  2934. <em>
  2935. <a href="#external-secrets.io/v1.ChefAuth">
  2936. ChefAuth
  2937. </a>
  2938. </em>
  2939. </td>
  2940. <td>
  2941. <p>Auth defines the information necessary to authenticate against chef Server</p>
  2942. </td>
  2943. </tr>
  2944. <tr>
  2945. <td>
  2946. <code>username</code></br>
  2947. <em>
  2948. string
  2949. </em>
  2950. </td>
  2951. <td>
  2952. <p>UserName should be the user ID on the chef server</p>
  2953. </td>
  2954. </tr>
  2955. <tr>
  2956. <td>
  2957. <code>serverUrl</code></br>
  2958. <em>
  2959. string
  2960. </em>
  2961. </td>
  2962. <td>
  2963. <p>ServerURL is the chef server URL used to connect to. If using orgs you should include your org in the url and terminate the url with a &ldquo;/&rdquo;</p>
  2964. </td>
  2965. </tr>
  2966. </tbody>
  2967. </table>
  2968. <h3 id="external-secrets.io/v1.CloudruSMProvider">CloudruSMProvider
  2969. </h3>
  2970. <p>
  2971. (<em>Appears on:</em>
  2972. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  2973. </p>
  2974. <p>
  2975. <p>CloudruSMProvider configures a store to sync secrets using the Cloud.ru Secret Manager provider.</p>
  2976. </p>
  2977. <table>
  2978. <thead>
  2979. <tr>
  2980. <th>Field</th>
  2981. <th>Description</th>
  2982. </tr>
  2983. </thead>
  2984. <tbody>
  2985. <tr>
  2986. <td>
  2987. <code>auth</code></br>
  2988. <em>
  2989. <a href="#external-secrets.io/v1.CSMAuth">
  2990. CSMAuth
  2991. </a>
  2992. </em>
  2993. </td>
  2994. <td>
  2995. </td>
  2996. </tr>
  2997. <tr>
  2998. <td>
  2999. <code>projectID</code></br>
  3000. <em>
  3001. string
  3002. </em>
  3003. </td>
  3004. <td>
  3005. <p>ProjectID is the project, which the secrets are stored in.</p>
  3006. </td>
  3007. </tr>
  3008. </tbody>
  3009. </table>
  3010. <h3 id="external-secrets.io/v1.ClusterExternalSecret">ClusterExternalSecret
  3011. </h3>
  3012. <p>
  3013. <p>ClusterExternalSecret is the Schema for the clusterexternalsecrets API.</p>
  3014. </p>
  3015. <table>
  3016. <thead>
  3017. <tr>
  3018. <th>Field</th>
  3019. <th>Description</th>
  3020. </tr>
  3021. </thead>
  3022. <tbody>
  3023. <tr>
  3024. <td>
  3025. <code>metadata</code></br>
  3026. <em>
  3027. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#objectmeta-v1-meta">
  3028. Kubernetes meta/v1.ObjectMeta
  3029. </a>
  3030. </em>
  3031. </td>
  3032. <td>
  3033. Refer to the Kubernetes API documentation for the fields of the
  3034. <code>metadata</code> field.
  3035. </td>
  3036. </tr>
  3037. <tr>
  3038. <td>
  3039. <code>spec</code></br>
  3040. <em>
  3041. <a href="#external-secrets.io/v1.ClusterExternalSecretSpec">
  3042. ClusterExternalSecretSpec
  3043. </a>
  3044. </em>
  3045. </td>
  3046. <td>
  3047. <br/>
  3048. <br/>
  3049. <table>
  3050. <tr>
  3051. <td>
  3052. <code>externalSecretSpec</code></br>
  3053. <em>
  3054. <a href="#external-secrets.io/v1.ExternalSecretSpec">
  3055. ExternalSecretSpec
  3056. </a>
  3057. </em>
  3058. </td>
  3059. <td>
  3060. <p>The spec for the ExternalSecrets to be created</p>
  3061. </td>
  3062. </tr>
  3063. <tr>
  3064. <td>
  3065. <code>externalSecretName</code></br>
  3066. <em>
  3067. string
  3068. </em>
  3069. </td>
  3070. <td>
  3071. <em>(Optional)</em>
  3072. <p>The name of the external secrets to be created.
  3073. Defaults to the name of the ClusterExternalSecret</p>
  3074. </td>
  3075. </tr>
  3076. <tr>
  3077. <td>
  3078. <code>externalSecretMetadata</code></br>
  3079. <em>
  3080. <a href="#external-secrets.io/v1.ExternalSecretMetadata">
  3081. ExternalSecretMetadata
  3082. </a>
  3083. </em>
  3084. </td>
  3085. <td>
  3086. <em>(Optional)</em>
  3087. <p>The metadata of the external secrets to be created</p>
  3088. </td>
  3089. </tr>
  3090. <tr>
  3091. <td>
  3092. <code>namespaceSelector</code></br>
  3093. <em>
  3094. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#labelselector-v1-meta">
  3095. Kubernetes meta/v1.LabelSelector
  3096. </a>
  3097. </em>
  3098. </td>
  3099. <td>
  3100. <em>(Optional)</em>
  3101. <p>The labels to select by to find the Namespaces to create the ExternalSecrets in.
  3102. Deprecated: Use NamespaceSelectors instead.</p>
  3103. </td>
  3104. </tr>
  3105. <tr>
  3106. <td>
  3107. <code>namespaceSelectors</code></br>
  3108. <em>
  3109. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#*k8s.io/apimachinery/pkg/apis/meta/v1.labelselector--">
  3110. []*k8s.io/apimachinery/pkg/apis/meta/v1.LabelSelector
  3111. </a>
  3112. </em>
  3113. </td>
  3114. <td>
  3115. <em>(Optional)</em>
  3116. <p>A list of labels to select by to find the Namespaces to create the ExternalSecrets in. The selectors are ORed.</p>
  3117. </td>
  3118. </tr>
  3119. <tr>
  3120. <td>
  3121. <code>namespaces</code></br>
  3122. <em>
  3123. []string
  3124. </em>
  3125. </td>
  3126. <td>
  3127. <em>(Optional)</em>
  3128. <p>Choose namespaces by name. This field is ORed with anything that NamespaceSelectors ends up choosing.
  3129. Deprecated: Use NamespaceSelectors instead.</p>
  3130. </td>
  3131. </tr>
  3132. <tr>
  3133. <td>
  3134. <code>refreshTime</code></br>
  3135. <em>
  3136. <a href="https://pkg.go.dev/k8s.io/apimachinery/pkg/apis/meta/v1#Duration">
  3137. Kubernetes meta/v1.Duration
  3138. </a>
  3139. </em>
  3140. </td>
  3141. <td>
  3142. <p>The time in which the controller should reconcile its objects and recheck namespaces for labels.</p>
  3143. </td>
  3144. </tr>
  3145. </table>
  3146. </td>
  3147. </tr>
  3148. <tr>
  3149. <td>
  3150. <code>status</code></br>
  3151. <em>
  3152. <a href="#external-secrets.io/v1.ClusterExternalSecretStatus">
  3153. ClusterExternalSecretStatus
  3154. </a>
  3155. </em>
  3156. </td>
  3157. <td>
  3158. </td>
  3159. </tr>
  3160. </tbody>
  3161. </table>
  3162. <h3 id="external-secrets.io/v1.ClusterExternalSecretConditionType">ClusterExternalSecretConditionType
  3163. (<code>string</code> alias)</p></h3>
  3164. <p>
  3165. (<em>Appears on:</em>
  3166. <a href="#external-secrets.io/v1.ClusterExternalSecretStatusCondition">ClusterExternalSecretStatusCondition</a>)
  3167. </p>
  3168. <p>
  3169. </p>
  3170. <table>
  3171. <thead>
  3172. <tr>
  3173. <th>Value</th>
  3174. <th>Description</th>
  3175. </tr>
  3176. </thead>
  3177. <tbody><tr><td><p>&#34;Ready&#34;</p></td>
  3178. <td></td>
  3179. </tr></tbody>
  3180. </table>
  3181. <h3 id="external-secrets.io/v1.ClusterExternalSecretNamespaceFailure">ClusterExternalSecretNamespaceFailure
  3182. </h3>
  3183. <p>
  3184. (<em>Appears on:</em>
  3185. <a href="#external-secrets.io/v1.ClusterExternalSecretStatus">ClusterExternalSecretStatus</a>)
  3186. </p>
  3187. <p>
  3188. <p>ClusterExternalSecretNamespaceFailure represents a failed namespace deployment and it&rsquo;s reason.</p>
  3189. </p>
  3190. <table>
  3191. <thead>
  3192. <tr>
  3193. <th>Field</th>
  3194. <th>Description</th>
  3195. </tr>
  3196. </thead>
  3197. <tbody>
  3198. <tr>
  3199. <td>
  3200. <code>namespace</code></br>
  3201. <em>
  3202. string
  3203. </em>
  3204. </td>
  3205. <td>
  3206. <p>Namespace is the namespace that failed when trying to apply an ExternalSecret</p>
  3207. </td>
  3208. </tr>
  3209. <tr>
  3210. <td>
  3211. <code>reason</code></br>
  3212. <em>
  3213. string
  3214. </em>
  3215. </td>
  3216. <td>
  3217. <em>(Optional)</em>
  3218. <p>Reason is why the ExternalSecret failed to apply to the namespace</p>
  3219. </td>
  3220. </tr>
  3221. </tbody>
  3222. </table>
  3223. <h3 id="external-secrets.io/v1.ClusterExternalSecretSpec">ClusterExternalSecretSpec
  3224. </h3>
  3225. <p>
  3226. (<em>Appears on:</em>
  3227. <a href="#external-secrets.io/v1.ClusterExternalSecret">ClusterExternalSecret</a>)
  3228. </p>
  3229. <p>
  3230. <p>ClusterExternalSecretSpec defines the desired state of ClusterExternalSecret.</p>
  3231. </p>
  3232. <table>
  3233. <thead>
  3234. <tr>
  3235. <th>Field</th>
  3236. <th>Description</th>
  3237. </tr>
  3238. </thead>
  3239. <tbody>
  3240. <tr>
  3241. <td>
  3242. <code>externalSecretSpec</code></br>
  3243. <em>
  3244. <a href="#external-secrets.io/v1.ExternalSecretSpec">
  3245. ExternalSecretSpec
  3246. </a>
  3247. </em>
  3248. </td>
  3249. <td>
  3250. <p>The spec for the ExternalSecrets to be created</p>
  3251. </td>
  3252. </tr>
  3253. <tr>
  3254. <td>
  3255. <code>externalSecretName</code></br>
  3256. <em>
  3257. string
  3258. </em>
  3259. </td>
  3260. <td>
  3261. <em>(Optional)</em>
  3262. <p>The name of the external secrets to be created.
  3263. Defaults to the name of the ClusterExternalSecret</p>
  3264. </td>
  3265. </tr>
  3266. <tr>
  3267. <td>
  3268. <code>externalSecretMetadata</code></br>
  3269. <em>
  3270. <a href="#external-secrets.io/v1.ExternalSecretMetadata">
  3271. ExternalSecretMetadata
  3272. </a>
  3273. </em>
  3274. </td>
  3275. <td>
  3276. <em>(Optional)</em>
  3277. <p>The metadata of the external secrets to be created</p>
  3278. </td>
  3279. </tr>
  3280. <tr>
  3281. <td>
  3282. <code>namespaceSelector</code></br>
  3283. <em>
  3284. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#labelselector-v1-meta">
  3285. Kubernetes meta/v1.LabelSelector
  3286. </a>
  3287. </em>
  3288. </td>
  3289. <td>
  3290. <em>(Optional)</em>
  3291. <p>The labels to select by to find the Namespaces to create the ExternalSecrets in.
  3292. Deprecated: Use NamespaceSelectors instead.</p>
  3293. </td>
  3294. </tr>
  3295. <tr>
  3296. <td>
  3297. <code>namespaceSelectors</code></br>
  3298. <em>
  3299. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#*k8s.io/apimachinery/pkg/apis/meta/v1.labelselector--">
  3300. []*k8s.io/apimachinery/pkg/apis/meta/v1.LabelSelector
  3301. </a>
  3302. </em>
  3303. </td>
  3304. <td>
  3305. <em>(Optional)</em>
  3306. <p>A list of labels to select by to find the Namespaces to create the ExternalSecrets in. The selectors are ORed.</p>
  3307. </td>
  3308. </tr>
  3309. <tr>
  3310. <td>
  3311. <code>namespaces</code></br>
  3312. <em>
  3313. []string
  3314. </em>
  3315. </td>
  3316. <td>
  3317. <em>(Optional)</em>
  3318. <p>Choose namespaces by name. This field is ORed with anything that NamespaceSelectors ends up choosing.
  3319. Deprecated: Use NamespaceSelectors instead.</p>
  3320. </td>
  3321. </tr>
  3322. <tr>
  3323. <td>
  3324. <code>refreshTime</code></br>
  3325. <em>
  3326. <a href="https://pkg.go.dev/k8s.io/apimachinery/pkg/apis/meta/v1#Duration">
  3327. Kubernetes meta/v1.Duration
  3328. </a>
  3329. </em>
  3330. </td>
  3331. <td>
  3332. <p>The time in which the controller should reconcile its objects and recheck namespaces for labels.</p>
  3333. </td>
  3334. </tr>
  3335. </tbody>
  3336. </table>
  3337. <h3 id="external-secrets.io/v1.ClusterExternalSecretStatus">ClusterExternalSecretStatus
  3338. </h3>
  3339. <p>
  3340. (<em>Appears on:</em>
  3341. <a href="#external-secrets.io/v1.ClusterExternalSecret">ClusterExternalSecret</a>)
  3342. </p>
  3343. <p>
  3344. <p>ClusterExternalSecretStatus defines the observed state of ClusterExternalSecret.</p>
  3345. </p>
  3346. <table>
  3347. <thead>
  3348. <tr>
  3349. <th>Field</th>
  3350. <th>Description</th>
  3351. </tr>
  3352. </thead>
  3353. <tbody>
  3354. <tr>
  3355. <td>
  3356. <code>externalSecretName</code></br>
  3357. <em>
  3358. string
  3359. </em>
  3360. </td>
  3361. <td>
  3362. <p>ExternalSecretName is the name of the ExternalSecrets created by the ClusterExternalSecret</p>
  3363. </td>
  3364. </tr>
  3365. <tr>
  3366. <td>
  3367. <code>failedNamespaces</code></br>
  3368. <em>
  3369. <a href="#external-secrets.io/v1.ClusterExternalSecretNamespaceFailure">
  3370. []ClusterExternalSecretNamespaceFailure
  3371. </a>
  3372. </em>
  3373. </td>
  3374. <td>
  3375. <em>(Optional)</em>
  3376. <p>Failed namespaces are the namespaces that failed to apply an ExternalSecret</p>
  3377. </td>
  3378. </tr>
  3379. <tr>
  3380. <td>
  3381. <code>provisionedNamespaces</code></br>
  3382. <em>
  3383. []string
  3384. </em>
  3385. </td>
  3386. <td>
  3387. <em>(Optional)</em>
  3388. <p>ProvisionedNamespaces are the namespaces where the ClusterExternalSecret has secrets</p>
  3389. </td>
  3390. </tr>
  3391. <tr>
  3392. <td>
  3393. <code>conditions</code></br>
  3394. <em>
  3395. <a href="#external-secrets.io/v1.ClusterExternalSecretStatusCondition">
  3396. []ClusterExternalSecretStatusCondition
  3397. </a>
  3398. </em>
  3399. </td>
  3400. <td>
  3401. <em>(Optional)</em>
  3402. </td>
  3403. </tr>
  3404. </tbody>
  3405. </table>
  3406. <h3 id="external-secrets.io/v1.ClusterExternalSecretStatusCondition">ClusterExternalSecretStatusCondition
  3407. </h3>
  3408. <p>
  3409. (<em>Appears on:</em>
  3410. <a href="#external-secrets.io/v1.ClusterExternalSecretStatus">ClusterExternalSecretStatus</a>)
  3411. </p>
  3412. <p>
  3413. </p>
  3414. <table>
  3415. <thead>
  3416. <tr>
  3417. <th>Field</th>
  3418. <th>Description</th>
  3419. </tr>
  3420. </thead>
  3421. <tbody>
  3422. <tr>
  3423. <td>
  3424. <code>type</code></br>
  3425. <em>
  3426. <a href="#external-secrets.io/v1.ClusterExternalSecretConditionType">
  3427. ClusterExternalSecretConditionType
  3428. </a>
  3429. </em>
  3430. </td>
  3431. <td>
  3432. </td>
  3433. </tr>
  3434. <tr>
  3435. <td>
  3436. <code>status</code></br>
  3437. <em>
  3438. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#conditionstatus-v1-core">
  3439. Kubernetes core/v1.ConditionStatus
  3440. </a>
  3441. </em>
  3442. </td>
  3443. <td>
  3444. </td>
  3445. </tr>
  3446. <tr>
  3447. <td>
  3448. <code>message</code></br>
  3449. <em>
  3450. string
  3451. </em>
  3452. </td>
  3453. <td>
  3454. <em>(Optional)</em>
  3455. </td>
  3456. </tr>
  3457. </tbody>
  3458. </table>
  3459. <h3 id="external-secrets.io/v1.ClusterSecretStore">ClusterSecretStore
  3460. </h3>
  3461. <p>
  3462. <p>ClusterSecretStore represents a secure external location for storing secrets, which can be referenced as part of <code>storeRef</code> fields.</p>
  3463. </p>
  3464. <table>
  3465. <thead>
  3466. <tr>
  3467. <th>Field</th>
  3468. <th>Description</th>
  3469. </tr>
  3470. </thead>
  3471. <tbody>
  3472. <tr>
  3473. <td>
  3474. <code>metadata</code></br>
  3475. <em>
  3476. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#objectmeta-v1-meta">
  3477. Kubernetes meta/v1.ObjectMeta
  3478. </a>
  3479. </em>
  3480. </td>
  3481. <td>
  3482. Refer to the Kubernetes API documentation for the fields of the
  3483. <code>metadata</code> field.
  3484. </td>
  3485. </tr>
  3486. <tr>
  3487. <td>
  3488. <code>spec</code></br>
  3489. <em>
  3490. <a href="#external-secrets.io/v1.SecretStoreSpec">
  3491. SecretStoreSpec
  3492. </a>
  3493. </em>
  3494. </td>
  3495. <td>
  3496. <br/>
  3497. <br/>
  3498. <table>
  3499. <tr>
  3500. <td>
  3501. <code>controller</code></br>
  3502. <em>
  3503. string
  3504. </em>
  3505. </td>
  3506. <td>
  3507. <em>(Optional)</em>
  3508. <p>Used to select the correct ESO controller (think: ingress.ingressClassName)
  3509. The ESO controller is instantiated with a specific controller name and filters ES based on this property</p>
  3510. </td>
  3511. </tr>
  3512. <tr>
  3513. <td>
  3514. <code>provider</code></br>
  3515. <em>
  3516. <a href="#external-secrets.io/v1.SecretStoreProvider">
  3517. SecretStoreProvider
  3518. </a>
  3519. </em>
  3520. </td>
  3521. <td>
  3522. <p>Used to configure the provider. Only one provider may be set</p>
  3523. </td>
  3524. </tr>
  3525. <tr>
  3526. <td>
  3527. <code>retrySettings</code></br>
  3528. <em>
  3529. <a href="#external-secrets.io/v1.SecretStoreRetrySettings">
  3530. SecretStoreRetrySettings
  3531. </a>
  3532. </em>
  3533. </td>
  3534. <td>
  3535. <em>(Optional)</em>
  3536. <p>Used to configure http retries if failed</p>
  3537. </td>
  3538. </tr>
  3539. <tr>
  3540. <td>
  3541. <code>refreshInterval</code></br>
  3542. <em>
  3543. int
  3544. </em>
  3545. </td>
  3546. <td>
  3547. <em>(Optional)</em>
  3548. <p>Used to configure store refresh interval in seconds. Empty or 0 will default to the controller config.</p>
  3549. </td>
  3550. </tr>
  3551. <tr>
  3552. <td>
  3553. <code>conditions</code></br>
  3554. <em>
  3555. <a href="#external-secrets.io/v1.ClusterSecretStoreCondition">
  3556. []ClusterSecretStoreCondition
  3557. </a>
  3558. </em>
  3559. </td>
  3560. <td>
  3561. <em>(Optional)</em>
  3562. <p>Used to constraint a ClusterSecretStore to specific namespaces. Relevant only to ClusterSecretStore</p>
  3563. </td>
  3564. </tr>
  3565. </table>
  3566. </td>
  3567. </tr>
  3568. <tr>
  3569. <td>
  3570. <code>status</code></br>
  3571. <em>
  3572. <a href="#external-secrets.io/v1.SecretStoreStatus">
  3573. SecretStoreStatus
  3574. </a>
  3575. </em>
  3576. </td>
  3577. <td>
  3578. </td>
  3579. </tr>
  3580. </tbody>
  3581. </table>
  3582. <h3 id="external-secrets.io/v1.ClusterSecretStoreCondition">ClusterSecretStoreCondition
  3583. </h3>
  3584. <p>
  3585. (<em>Appears on:</em>
  3586. <a href="#external-secrets.io/v1.SecretStoreSpec">SecretStoreSpec</a>)
  3587. </p>
  3588. <p>
  3589. <p>ClusterSecretStoreCondition describes a condition by which to choose namespaces to process ExternalSecrets in
  3590. for a ClusterSecretStore instance.</p>
  3591. </p>
  3592. <table>
  3593. <thead>
  3594. <tr>
  3595. <th>Field</th>
  3596. <th>Description</th>
  3597. </tr>
  3598. </thead>
  3599. <tbody>
  3600. <tr>
  3601. <td>
  3602. <code>namespaceSelector</code></br>
  3603. <em>
  3604. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#labelselector-v1-meta">
  3605. Kubernetes meta/v1.LabelSelector
  3606. </a>
  3607. </em>
  3608. </td>
  3609. <td>
  3610. <em>(Optional)</em>
  3611. <p>Choose namespace using a labelSelector</p>
  3612. </td>
  3613. </tr>
  3614. <tr>
  3615. <td>
  3616. <code>namespaces</code></br>
  3617. <em>
  3618. []string
  3619. </em>
  3620. </td>
  3621. <td>
  3622. <em>(Optional)</em>
  3623. <p>Choose namespaces by name</p>
  3624. </td>
  3625. </tr>
  3626. <tr>
  3627. <td>
  3628. <code>namespaceRegexes</code></br>
  3629. <em>
  3630. []string
  3631. </em>
  3632. </td>
  3633. <td>
  3634. <em>(Optional)</em>
  3635. <p>Choose namespaces by using regex matching</p>
  3636. </td>
  3637. </tr>
  3638. </tbody>
  3639. </table>
  3640. <h3 id="external-secrets.io/v1.ConjurAPIKey">ConjurAPIKey
  3641. </h3>
  3642. <p>
  3643. (<em>Appears on:</em>
  3644. <a href="#external-secrets.io/v1.ConjurAuth">ConjurAuth</a>)
  3645. </p>
  3646. <p>
  3647. </p>
  3648. <table>
  3649. <thead>
  3650. <tr>
  3651. <th>Field</th>
  3652. <th>Description</th>
  3653. </tr>
  3654. </thead>
  3655. <tbody>
  3656. <tr>
  3657. <td>
  3658. <code>account</code></br>
  3659. <em>
  3660. string
  3661. </em>
  3662. </td>
  3663. <td>
  3664. <p>Account is the Conjur organization account name.</p>
  3665. </td>
  3666. </tr>
  3667. <tr>
  3668. <td>
  3669. <code>userRef</code></br>
  3670. <em>
  3671. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  3672. External Secrets meta/v1.SecretKeySelector
  3673. </a>
  3674. </em>
  3675. </td>
  3676. <td>
  3677. <p>A reference to a specific &lsquo;key&rsquo; containing the Conjur username
  3678. within a Secret resource. In some instances, <code>key</code> is a required field.</p>
  3679. </td>
  3680. </tr>
  3681. <tr>
  3682. <td>
  3683. <code>apiKeyRef</code></br>
  3684. <em>
  3685. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  3686. External Secrets meta/v1.SecretKeySelector
  3687. </a>
  3688. </em>
  3689. </td>
  3690. <td>
  3691. <p>A reference to a specific &lsquo;key&rsquo; containing the Conjur API key
  3692. within a Secret resource. In some instances, <code>key</code> is a required field.</p>
  3693. </td>
  3694. </tr>
  3695. </tbody>
  3696. </table>
  3697. <h3 id="external-secrets.io/v1.ConjurAuth">ConjurAuth
  3698. </h3>
  3699. <p>
  3700. (<em>Appears on:</em>
  3701. <a href="#external-secrets.io/v1.ConjurProvider">ConjurProvider</a>)
  3702. </p>
  3703. <p>
  3704. </p>
  3705. <table>
  3706. <thead>
  3707. <tr>
  3708. <th>Field</th>
  3709. <th>Description</th>
  3710. </tr>
  3711. </thead>
  3712. <tbody>
  3713. <tr>
  3714. <td>
  3715. <code>apikey</code></br>
  3716. <em>
  3717. <a href="#external-secrets.io/v1.ConjurAPIKey">
  3718. ConjurAPIKey
  3719. </a>
  3720. </em>
  3721. </td>
  3722. <td>
  3723. <em>(Optional)</em>
  3724. <p>Authenticates with Conjur using an API key.</p>
  3725. </td>
  3726. </tr>
  3727. <tr>
  3728. <td>
  3729. <code>jwt</code></br>
  3730. <em>
  3731. <a href="#external-secrets.io/v1.ConjurJWT">
  3732. ConjurJWT
  3733. </a>
  3734. </em>
  3735. </td>
  3736. <td>
  3737. <em>(Optional)</em>
  3738. <p>Jwt enables JWT authentication using Kubernetes service account tokens.</p>
  3739. </td>
  3740. </tr>
  3741. </tbody>
  3742. </table>
  3743. <h3 id="external-secrets.io/v1.ConjurJWT">ConjurJWT
  3744. </h3>
  3745. <p>
  3746. (<em>Appears on:</em>
  3747. <a href="#external-secrets.io/v1.ConjurAuth">ConjurAuth</a>)
  3748. </p>
  3749. <p>
  3750. </p>
  3751. <table>
  3752. <thead>
  3753. <tr>
  3754. <th>Field</th>
  3755. <th>Description</th>
  3756. </tr>
  3757. </thead>
  3758. <tbody>
  3759. <tr>
  3760. <td>
  3761. <code>account</code></br>
  3762. <em>
  3763. string
  3764. </em>
  3765. </td>
  3766. <td>
  3767. <p>Account is the Conjur organization account name.</p>
  3768. </td>
  3769. </tr>
  3770. <tr>
  3771. <td>
  3772. <code>serviceID</code></br>
  3773. <em>
  3774. string
  3775. </em>
  3776. </td>
  3777. <td>
  3778. <p>The conjur authn jwt webservice id</p>
  3779. </td>
  3780. </tr>
  3781. <tr>
  3782. <td>
  3783. <code>hostId</code></br>
  3784. <em>
  3785. string
  3786. </em>
  3787. </td>
  3788. <td>
  3789. <em>(Optional)</em>
  3790. <p>Optional HostID for JWT authentication. This may be used depending
  3791. on how the Conjur JWT authenticator policy is configured.</p>
  3792. </td>
  3793. </tr>
  3794. <tr>
  3795. <td>
  3796. <code>secretRef</code></br>
  3797. <em>
  3798. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  3799. External Secrets meta/v1.SecretKeySelector
  3800. </a>
  3801. </em>
  3802. </td>
  3803. <td>
  3804. <em>(Optional)</em>
  3805. <p>Optional SecretRef that refers to a key in a Secret resource containing JWT token to
  3806. authenticate with Conjur using the JWT authentication method.</p>
  3807. </td>
  3808. </tr>
  3809. <tr>
  3810. <td>
  3811. <code>serviceAccountRef</code></br>
  3812. <em>
  3813. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  3814. External Secrets meta/v1.ServiceAccountSelector
  3815. </a>
  3816. </em>
  3817. </td>
  3818. <td>
  3819. <em>(Optional)</em>
  3820. <p>Optional ServiceAccountRef specifies the Kubernetes service account for which to request
  3821. a token for with the <code>TokenRequest</code> API.</p>
  3822. </td>
  3823. </tr>
  3824. </tbody>
  3825. </table>
  3826. <h3 id="external-secrets.io/v1.ConjurProvider">ConjurProvider
  3827. </h3>
  3828. <p>
  3829. (<em>Appears on:</em>
  3830. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  3831. </p>
  3832. <p>
  3833. </p>
  3834. <table>
  3835. <thead>
  3836. <tr>
  3837. <th>Field</th>
  3838. <th>Description</th>
  3839. </tr>
  3840. </thead>
  3841. <tbody>
  3842. <tr>
  3843. <td>
  3844. <code>url</code></br>
  3845. <em>
  3846. string
  3847. </em>
  3848. </td>
  3849. <td>
  3850. <p>URL is the endpoint of the Conjur instance.</p>
  3851. </td>
  3852. </tr>
  3853. <tr>
  3854. <td>
  3855. <code>caBundle</code></br>
  3856. <em>
  3857. string
  3858. </em>
  3859. </td>
  3860. <td>
  3861. <em>(Optional)</em>
  3862. <p>CABundle is a PEM encoded CA bundle that will be used to validate the Conjur server certificate.</p>
  3863. </td>
  3864. </tr>
  3865. <tr>
  3866. <td>
  3867. <code>caProvider</code></br>
  3868. <em>
  3869. <a href="#external-secrets.io/v1.CAProvider">
  3870. CAProvider
  3871. </a>
  3872. </em>
  3873. </td>
  3874. <td>
  3875. <em>(Optional)</em>
  3876. <p>Used to provide custom certificate authority (CA) certificates
  3877. for a secret store. The CAProvider points to a Secret or ConfigMap resource
  3878. that contains a PEM-encoded certificate.</p>
  3879. </td>
  3880. </tr>
  3881. <tr>
  3882. <td>
  3883. <code>auth</code></br>
  3884. <em>
  3885. <a href="#external-secrets.io/v1.ConjurAuth">
  3886. ConjurAuth
  3887. </a>
  3888. </em>
  3889. </td>
  3890. <td>
  3891. <p>Defines authentication settings for connecting to Conjur.</p>
  3892. </td>
  3893. </tr>
  3894. </tbody>
  3895. </table>
  3896. <h3 id="external-secrets.io/v1.DelineaProvider">DelineaProvider
  3897. </h3>
  3898. <p>
  3899. (<em>Appears on:</em>
  3900. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  3901. </p>
  3902. <p>
  3903. <p>See <a href="https://github.com/DelineaXPM/dsv-sdk-go/blob/main/vault/vault.go">https://github.com/DelineaXPM/dsv-sdk-go/blob/main/vault/vault.go</a>.</p>
  3904. </p>
  3905. <table>
  3906. <thead>
  3907. <tr>
  3908. <th>Field</th>
  3909. <th>Description</th>
  3910. </tr>
  3911. </thead>
  3912. <tbody>
  3913. <tr>
  3914. <td>
  3915. <code>clientId</code></br>
  3916. <em>
  3917. <a href="#external-secrets.io/v1.DelineaProviderSecretRef">
  3918. DelineaProviderSecretRef
  3919. </a>
  3920. </em>
  3921. </td>
  3922. <td>
  3923. <p>ClientID is the non-secret part of the credential.</p>
  3924. </td>
  3925. </tr>
  3926. <tr>
  3927. <td>
  3928. <code>clientSecret</code></br>
  3929. <em>
  3930. <a href="#external-secrets.io/v1.DelineaProviderSecretRef">
  3931. DelineaProviderSecretRef
  3932. </a>
  3933. </em>
  3934. </td>
  3935. <td>
  3936. <p>ClientSecret is the secret part of the credential.</p>
  3937. </td>
  3938. </tr>
  3939. <tr>
  3940. <td>
  3941. <code>tenant</code></br>
  3942. <em>
  3943. string
  3944. </em>
  3945. </td>
  3946. <td>
  3947. <p>Tenant is the chosen hostname / site name.</p>
  3948. </td>
  3949. </tr>
  3950. <tr>
  3951. <td>
  3952. <code>urlTemplate</code></br>
  3953. <em>
  3954. string
  3955. </em>
  3956. </td>
  3957. <td>
  3958. <em>(Optional)</em>
  3959. <p>URLTemplate
  3960. If unset, defaults to &ldquo;https://%s.secretsvaultcloud.%s/v1/%s%s&rdquo;.</p>
  3961. </td>
  3962. </tr>
  3963. <tr>
  3964. <td>
  3965. <code>tld</code></br>
  3966. <em>
  3967. string
  3968. </em>
  3969. </td>
  3970. <td>
  3971. <em>(Optional)</em>
  3972. <p>TLD is based on the server location that was chosen during provisioning.
  3973. If unset, defaults to &ldquo;com&rdquo;.</p>
  3974. </td>
  3975. </tr>
  3976. </tbody>
  3977. </table>
  3978. <h3 id="external-secrets.io/v1.DelineaProviderSecretRef">DelineaProviderSecretRef
  3979. </h3>
  3980. <p>
  3981. (<em>Appears on:</em>
  3982. <a href="#external-secrets.io/v1.DelineaProvider">DelineaProvider</a>)
  3983. </p>
  3984. <p>
  3985. </p>
  3986. <table>
  3987. <thead>
  3988. <tr>
  3989. <th>Field</th>
  3990. <th>Description</th>
  3991. </tr>
  3992. </thead>
  3993. <tbody>
  3994. <tr>
  3995. <td>
  3996. <code>value</code></br>
  3997. <em>
  3998. string
  3999. </em>
  4000. </td>
  4001. <td>
  4002. <em>(Optional)</em>
  4003. <p>Value can be specified directly to set a value without using a secret.</p>
  4004. </td>
  4005. </tr>
  4006. <tr>
  4007. <td>
  4008. <code>secretRef</code></br>
  4009. <em>
  4010. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  4011. External Secrets meta/v1.SecretKeySelector
  4012. </a>
  4013. </em>
  4014. </td>
  4015. <td>
  4016. <em>(Optional)</em>
  4017. <p>SecretRef references a key in a secret that will be used as value.</p>
  4018. </td>
  4019. </tr>
  4020. </tbody>
  4021. </table>
  4022. <h3 id="external-secrets.io/v1.Device42Auth">Device42Auth
  4023. </h3>
  4024. <p>
  4025. (<em>Appears on:</em>
  4026. <a href="#external-secrets.io/v1.Device42Provider">Device42Provider</a>)
  4027. </p>
  4028. <p>
  4029. </p>
  4030. <table>
  4031. <thead>
  4032. <tr>
  4033. <th>Field</th>
  4034. <th>Description</th>
  4035. </tr>
  4036. </thead>
  4037. <tbody>
  4038. <tr>
  4039. <td>
  4040. <code>secretRef</code></br>
  4041. <em>
  4042. <a href="#external-secrets.io/v1.Device42SecretRef">
  4043. Device42SecretRef
  4044. </a>
  4045. </em>
  4046. </td>
  4047. <td>
  4048. </td>
  4049. </tr>
  4050. </tbody>
  4051. </table>
  4052. <h3 id="external-secrets.io/v1.Device42Provider">Device42Provider
  4053. </h3>
  4054. <p>
  4055. (<em>Appears on:</em>
  4056. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  4057. </p>
  4058. <p>
  4059. <p>Device42Provider configures a store to sync secrets with a Device42 instance.</p>
  4060. </p>
  4061. <table>
  4062. <thead>
  4063. <tr>
  4064. <th>Field</th>
  4065. <th>Description</th>
  4066. </tr>
  4067. </thead>
  4068. <tbody>
  4069. <tr>
  4070. <td>
  4071. <code>host</code></br>
  4072. <em>
  4073. string
  4074. </em>
  4075. </td>
  4076. <td>
  4077. <p>URL configures the Device42 instance URL.</p>
  4078. </td>
  4079. </tr>
  4080. <tr>
  4081. <td>
  4082. <code>auth</code></br>
  4083. <em>
  4084. <a href="#external-secrets.io/v1.Device42Auth">
  4085. Device42Auth
  4086. </a>
  4087. </em>
  4088. </td>
  4089. <td>
  4090. <p>Auth configures how secret-manager authenticates with a Device42 instance.</p>
  4091. </td>
  4092. </tr>
  4093. </tbody>
  4094. </table>
  4095. <h3 id="external-secrets.io/v1.Device42SecretRef">Device42SecretRef
  4096. </h3>
  4097. <p>
  4098. (<em>Appears on:</em>
  4099. <a href="#external-secrets.io/v1.Device42Auth">Device42Auth</a>)
  4100. </p>
  4101. <p>
  4102. </p>
  4103. <table>
  4104. <thead>
  4105. <tr>
  4106. <th>Field</th>
  4107. <th>Description</th>
  4108. </tr>
  4109. </thead>
  4110. <tbody>
  4111. <tr>
  4112. <td>
  4113. <code>credentials</code></br>
  4114. <em>
  4115. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  4116. External Secrets meta/v1.SecretKeySelector
  4117. </a>
  4118. </em>
  4119. </td>
  4120. <td>
  4121. <em>(Optional)</em>
  4122. <p>Username / Password is used for authentication.</p>
  4123. </td>
  4124. </tr>
  4125. </tbody>
  4126. </table>
  4127. <h3 id="external-secrets.io/v1.DopplerAuth">DopplerAuth
  4128. </h3>
  4129. <p>
  4130. (<em>Appears on:</em>
  4131. <a href="#external-secrets.io/v1.DopplerProvider">DopplerProvider</a>)
  4132. </p>
  4133. <p>
  4134. </p>
  4135. <table>
  4136. <thead>
  4137. <tr>
  4138. <th>Field</th>
  4139. <th>Description</th>
  4140. </tr>
  4141. </thead>
  4142. <tbody>
  4143. <tr>
  4144. <td>
  4145. <code>secretRef</code></br>
  4146. <em>
  4147. <a href="#external-secrets.io/v1.DopplerAuthSecretRef">
  4148. DopplerAuthSecretRef
  4149. </a>
  4150. </em>
  4151. </td>
  4152. <td>
  4153. </td>
  4154. </tr>
  4155. </tbody>
  4156. </table>
  4157. <h3 id="external-secrets.io/v1.DopplerAuthSecretRef">DopplerAuthSecretRef
  4158. </h3>
  4159. <p>
  4160. (<em>Appears on:</em>
  4161. <a href="#external-secrets.io/v1.DopplerAuth">DopplerAuth</a>)
  4162. </p>
  4163. <p>
  4164. </p>
  4165. <table>
  4166. <thead>
  4167. <tr>
  4168. <th>Field</th>
  4169. <th>Description</th>
  4170. </tr>
  4171. </thead>
  4172. <tbody>
  4173. <tr>
  4174. <td>
  4175. <code>dopplerToken</code></br>
  4176. <em>
  4177. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  4178. External Secrets meta/v1.SecretKeySelector
  4179. </a>
  4180. </em>
  4181. </td>
  4182. <td>
  4183. <p>The DopplerToken is used for authentication.
  4184. See <a href="https://docs.doppler.com/reference/api#authentication">https://docs.doppler.com/reference/api#authentication</a> for auth token types.
  4185. The Key attribute defaults to dopplerToken if not specified.</p>
  4186. </td>
  4187. </tr>
  4188. </tbody>
  4189. </table>
  4190. <h3 id="external-secrets.io/v1.DopplerProvider">DopplerProvider
  4191. </h3>
  4192. <p>
  4193. (<em>Appears on:</em>
  4194. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  4195. </p>
  4196. <p>
  4197. <p>DopplerProvider configures a store to sync secrets using the Doppler provider.
  4198. Project and Config are required if not using a Service Token.</p>
  4199. </p>
  4200. <table>
  4201. <thead>
  4202. <tr>
  4203. <th>Field</th>
  4204. <th>Description</th>
  4205. </tr>
  4206. </thead>
  4207. <tbody>
  4208. <tr>
  4209. <td>
  4210. <code>auth</code></br>
  4211. <em>
  4212. <a href="#external-secrets.io/v1.DopplerAuth">
  4213. DopplerAuth
  4214. </a>
  4215. </em>
  4216. </td>
  4217. <td>
  4218. <p>Auth configures how the Operator authenticates with the Doppler API</p>
  4219. </td>
  4220. </tr>
  4221. <tr>
  4222. <td>
  4223. <code>project</code></br>
  4224. <em>
  4225. string
  4226. </em>
  4227. </td>
  4228. <td>
  4229. <em>(Optional)</em>
  4230. <p>Doppler project (required if not using a Service Token)</p>
  4231. </td>
  4232. </tr>
  4233. <tr>
  4234. <td>
  4235. <code>config</code></br>
  4236. <em>
  4237. string
  4238. </em>
  4239. </td>
  4240. <td>
  4241. <em>(Optional)</em>
  4242. <p>Doppler config (required if not using a Service Token)</p>
  4243. </td>
  4244. </tr>
  4245. <tr>
  4246. <td>
  4247. <code>nameTransformer</code></br>
  4248. <em>
  4249. string
  4250. </em>
  4251. </td>
  4252. <td>
  4253. <em>(Optional)</em>
  4254. <p>Environment variable compatible name transforms that change secret names to a different format</p>
  4255. </td>
  4256. </tr>
  4257. <tr>
  4258. <td>
  4259. <code>format</code></br>
  4260. <em>
  4261. string
  4262. </em>
  4263. </td>
  4264. <td>
  4265. <em>(Optional)</em>
  4266. <p>Format enables the downloading of secrets as a file (string)</p>
  4267. </td>
  4268. </tr>
  4269. </tbody>
  4270. </table>
  4271. <h3 id="external-secrets.io/v1.ExternalSecret">ExternalSecret
  4272. </h3>
  4273. <p>
  4274. <p>ExternalSecret is the Schema for the external-secrets API.</p>
  4275. </p>
  4276. <table>
  4277. <thead>
  4278. <tr>
  4279. <th>Field</th>
  4280. <th>Description</th>
  4281. </tr>
  4282. </thead>
  4283. <tbody>
  4284. <tr>
  4285. <td>
  4286. <code>metadata</code></br>
  4287. <em>
  4288. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#objectmeta-v1-meta">
  4289. Kubernetes meta/v1.ObjectMeta
  4290. </a>
  4291. </em>
  4292. </td>
  4293. <td>
  4294. Refer to the Kubernetes API documentation for the fields of the
  4295. <code>metadata</code> field.
  4296. </td>
  4297. </tr>
  4298. <tr>
  4299. <td>
  4300. <code>spec</code></br>
  4301. <em>
  4302. <a href="#external-secrets.io/v1.ExternalSecretSpec">
  4303. ExternalSecretSpec
  4304. </a>
  4305. </em>
  4306. </td>
  4307. <td>
  4308. <br/>
  4309. <br/>
  4310. <table>
  4311. <tr>
  4312. <td>
  4313. <code>secretStoreRef</code></br>
  4314. <em>
  4315. <a href="#external-secrets.io/v1.SecretStoreRef">
  4316. SecretStoreRef
  4317. </a>
  4318. </em>
  4319. </td>
  4320. <td>
  4321. <em>(Optional)</em>
  4322. </td>
  4323. </tr>
  4324. <tr>
  4325. <td>
  4326. <code>target</code></br>
  4327. <em>
  4328. <a href="#external-secrets.io/v1.ExternalSecretTarget">
  4329. ExternalSecretTarget
  4330. </a>
  4331. </em>
  4332. </td>
  4333. <td>
  4334. <em>(Optional)</em>
  4335. </td>
  4336. </tr>
  4337. <tr>
  4338. <td>
  4339. <code>refreshPolicy</code></br>
  4340. <em>
  4341. <a href="#external-secrets.io/v1.ExternalSecretRefreshPolicy">
  4342. ExternalSecretRefreshPolicy
  4343. </a>
  4344. </em>
  4345. </td>
  4346. <td>
  4347. <em>(Optional)</em>
  4348. <p>RefreshPolicy determines how the ExternalSecret should be refreshed:
  4349. - CreatedOnce: Creates the Secret only if it does not exist and does not update it thereafter
  4350. - Periodic: Synchronizes the Secret from the external source at regular intervals specified by refreshInterval.
  4351. No periodic updates occur if refreshInterval is 0.
  4352. - OnChange: Only synchronizes the Secret when the ExternalSecret&rsquo;s metadata or specification changes</p>
  4353. </td>
  4354. </tr>
  4355. <tr>
  4356. <td>
  4357. <code>refreshInterval</code></br>
  4358. <em>
  4359. <a href="https://pkg.go.dev/k8s.io/apimachinery/pkg/apis/meta/v1#Duration">
  4360. Kubernetes meta/v1.Duration
  4361. </a>
  4362. </em>
  4363. </td>
  4364. <td>
  4365. <p>RefreshInterval is the amount of time before the values are read again from the SecretStore provider,
  4366. specified as Golang Duration strings.
  4367. Valid time units are &ldquo;ns&rdquo;, &ldquo;us&rdquo; (or &ldquo;µs&rdquo;), &ldquo;ms&rdquo;, &ldquo;s&rdquo;, &ldquo;m&rdquo;, &ldquo;h&rdquo;
  4368. Example values: &ldquo;1h&rdquo;, &ldquo;2h30m&rdquo;, &ldquo;10s&rdquo;
  4369. May be set to zero to fetch and create it once. Defaults to 1h.</p>
  4370. </td>
  4371. </tr>
  4372. <tr>
  4373. <td>
  4374. <code>data</code></br>
  4375. <em>
  4376. <a href="#external-secrets.io/v1.ExternalSecretData">
  4377. []ExternalSecretData
  4378. </a>
  4379. </em>
  4380. </td>
  4381. <td>
  4382. <em>(Optional)</em>
  4383. <p>Data defines the connection between the Kubernetes Secret keys and the Provider data</p>
  4384. </td>
  4385. </tr>
  4386. <tr>
  4387. <td>
  4388. <code>dataFrom</code></br>
  4389. <em>
  4390. <a href="#external-secrets.io/v1.ExternalSecretDataFromRemoteRef">
  4391. []ExternalSecretDataFromRemoteRef
  4392. </a>
  4393. </em>
  4394. </td>
  4395. <td>
  4396. <em>(Optional)</em>
  4397. <p>DataFrom is used to fetch all properties from a specific Provider data
  4398. If multiple entries are specified, the Secret keys are merged in the specified order</p>
  4399. </td>
  4400. </tr>
  4401. </table>
  4402. </td>
  4403. </tr>
  4404. <tr>
  4405. <td>
  4406. <code>status</code></br>
  4407. <em>
  4408. <a href="#external-secrets.io/v1.ExternalSecretStatus">
  4409. ExternalSecretStatus
  4410. </a>
  4411. </em>
  4412. </td>
  4413. <td>
  4414. </td>
  4415. </tr>
  4416. </tbody>
  4417. </table>
  4418. <h3 id="external-secrets.io/v1.ExternalSecretConditionType">ExternalSecretConditionType
  4419. (<code>string</code> alias)</p></h3>
  4420. <p>
  4421. (<em>Appears on:</em>
  4422. <a href="#external-secrets.io/v1.ExternalSecretStatusCondition">ExternalSecretStatusCondition</a>)
  4423. </p>
  4424. <p>
  4425. </p>
  4426. <table>
  4427. <thead>
  4428. <tr>
  4429. <th>Value</th>
  4430. <th>Description</th>
  4431. </tr>
  4432. </thead>
  4433. <tbody><tr><td><p>&#34;Deleted&#34;</p></td>
  4434. <td></td>
  4435. </tr><tr><td><p>&#34;Ready&#34;</p></td>
  4436. <td></td>
  4437. </tr></tbody>
  4438. </table>
  4439. <h3 id="external-secrets.io/v1.ExternalSecretConversionStrategy">ExternalSecretConversionStrategy
  4440. (<code>string</code> alias)</p></h3>
  4441. <p>
  4442. (<em>Appears on:</em>
  4443. <a href="#external-secrets.io/v1.ExternalSecretDataRemoteRef">ExternalSecretDataRemoteRef</a>,
  4444. <a href="#external-secrets.io/v1.ExternalSecretFind">ExternalSecretFind</a>)
  4445. </p>
  4446. <p>
  4447. </p>
  4448. <table>
  4449. <thead>
  4450. <tr>
  4451. <th>Value</th>
  4452. <th>Description</th>
  4453. </tr>
  4454. </thead>
  4455. <tbody><tr><td><p>&#34;Default&#34;</p></td>
  4456. <td></td>
  4457. </tr><tr><td><p>&#34;Unicode&#34;</p></td>
  4458. <td></td>
  4459. </tr></tbody>
  4460. </table>
  4461. <h3 id="external-secrets.io/v1.ExternalSecretCreationPolicy">ExternalSecretCreationPolicy
  4462. (<code>string</code> alias)</p></h3>
  4463. <p>
  4464. (<em>Appears on:</em>
  4465. <a href="#external-secrets.io/v1.ExternalSecretTarget">ExternalSecretTarget</a>)
  4466. </p>
  4467. <p>
  4468. <p>ExternalSecretCreationPolicy defines rules on how to create the resulting Secret.</p>
  4469. </p>
  4470. <table>
  4471. <thead>
  4472. <tr>
  4473. <th>Value</th>
  4474. <th>Description</th>
  4475. </tr>
  4476. </thead>
  4477. <tbody><tr><td><p>&#34;Merge&#34;</p></td>
  4478. <td><p>Merge does not create the Secret, but merges the data fields to the Secret.</p>
  4479. </td>
  4480. </tr><tr><td><p>&#34;None&#34;</p></td>
  4481. <td><p>None does not create a Secret (future use with injector).</p>
  4482. </td>
  4483. </tr><tr><td><p>&#34;Orphan&#34;</p></td>
  4484. <td><p>Orphan creates the Secret and does not set the ownerReference.
  4485. I.e. it will be orphaned after the deletion of the ExternalSecret.</p>
  4486. </td>
  4487. </tr><tr><td><p>&#34;Owner&#34;</p></td>
  4488. <td><p>Owner creates the Secret and sets .metadata.ownerReferences to the ExternalSecret resource.</p>
  4489. </td>
  4490. </tr></tbody>
  4491. </table>
  4492. <h3 id="external-secrets.io/v1.ExternalSecretData">ExternalSecretData
  4493. </h3>
  4494. <p>
  4495. (<em>Appears on:</em>
  4496. <a href="#external-secrets.io/v1.ExternalSecretSpec">ExternalSecretSpec</a>)
  4497. </p>
  4498. <p>
  4499. <p>ExternalSecretData defines the connection between the Kubernetes Secret key (spec.data.<key>) and the Provider data.</p>
  4500. </p>
  4501. <table>
  4502. <thead>
  4503. <tr>
  4504. <th>Field</th>
  4505. <th>Description</th>
  4506. </tr>
  4507. </thead>
  4508. <tbody>
  4509. <tr>
  4510. <td>
  4511. <code>secretKey</code></br>
  4512. <em>
  4513. string
  4514. </em>
  4515. </td>
  4516. <td>
  4517. <p>The key in the Kubernetes Secret to store the value.</p>
  4518. </td>
  4519. </tr>
  4520. <tr>
  4521. <td>
  4522. <code>remoteRef</code></br>
  4523. <em>
  4524. <a href="#external-secrets.io/v1.ExternalSecretDataRemoteRef">
  4525. ExternalSecretDataRemoteRef
  4526. </a>
  4527. </em>
  4528. </td>
  4529. <td>
  4530. <p>RemoteRef points to the remote secret and defines
  4531. which secret (version/property/..) to fetch.</p>
  4532. </td>
  4533. </tr>
  4534. <tr>
  4535. <td>
  4536. <code>sourceRef</code></br>
  4537. <em>
  4538. <a href="#external-secrets.io/v1.StoreSourceRef">
  4539. StoreSourceRef
  4540. </a>
  4541. </em>
  4542. </td>
  4543. <td>
  4544. <p>SourceRef allows you to override the source
  4545. from which the value will be pulled.</p>
  4546. </td>
  4547. </tr>
  4548. </tbody>
  4549. </table>
  4550. <h3 id="external-secrets.io/v1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef
  4551. </h3>
  4552. <p>
  4553. (<em>Appears on:</em>
  4554. <a href="#external-secrets.io/v1.ExternalSecretSpec">ExternalSecretSpec</a>)
  4555. </p>
  4556. <p>
  4557. </p>
  4558. <table>
  4559. <thead>
  4560. <tr>
  4561. <th>Field</th>
  4562. <th>Description</th>
  4563. </tr>
  4564. </thead>
  4565. <tbody>
  4566. <tr>
  4567. <td>
  4568. <code>extract</code></br>
  4569. <em>
  4570. <a href="#external-secrets.io/v1.ExternalSecretDataRemoteRef">
  4571. ExternalSecretDataRemoteRef
  4572. </a>
  4573. </em>
  4574. </td>
  4575. <td>
  4576. <em>(Optional)</em>
  4577. <p>Used to extract multiple key/value pairs from one secret
  4578. Note: Extract does not support sourceRef.Generator or sourceRef.GeneratorRef.</p>
  4579. </td>
  4580. </tr>
  4581. <tr>
  4582. <td>
  4583. <code>find</code></br>
  4584. <em>
  4585. <a href="#external-secrets.io/v1.ExternalSecretFind">
  4586. ExternalSecretFind
  4587. </a>
  4588. </em>
  4589. </td>
  4590. <td>
  4591. <em>(Optional)</em>
  4592. <p>Used to find secrets based on tags or regular expressions
  4593. Note: Find does not support sourceRef.Generator or sourceRef.GeneratorRef.</p>
  4594. </td>
  4595. </tr>
  4596. <tr>
  4597. <td>
  4598. <code>rewrite</code></br>
  4599. <em>
  4600. <a href="#external-secrets.io/v1.ExternalSecretRewrite">
  4601. []ExternalSecretRewrite
  4602. </a>
  4603. </em>
  4604. </td>
  4605. <td>
  4606. <em>(Optional)</em>
  4607. <p>Used to rewrite secret Keys after getting them from the secret Provider
  4608. Multiple Rewrite operations can be provided. They are applied in a layered order (first to last)</p>
  4609. </td>
  4610. </tr>
  4611. <tr>
  4612. <td>
  4613. <code>sourceRef</code></br>
  4614. <em>
  4615. <a href="#external-secrets.io/v1.StoreGeneratorSourceRef">
  4616. StoreGeneratorSourceRef
  4617. </a>
  4618. </em>
  4619. </td>
  4620. <td>
  4621. <p>SourceRef points to a store or generator
  4622. which contains secret values ready to use.
  4623. Use this in combination with Extract or Find pull values out of
  4624. a specific SecretStore.
  4625. When sourceRef points to a generator Extract or Find is not supported.
  4626. The generator returns a static map of values</p>
  4627. </td>
  4628. </tr>
  4629. </tbody>
  4630. </table>
  4631. <h3 id="external-secrets.io/v1.ExternalSecretDataRemoteRef">ExternalSecretDataRemoteRef
  4632. </h3>
  4633. <p>
  4634. (<em>Appears on:</em>
  4635. <a href="#external-secrets.io/v1.ExternalSecretData">ExternalSecretData</a>,
  4636. <a href="#external-secrets.io/v1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef</a>)
  4637. </p>
  4638. <p>
  4639. <p>ExternalSecretDataRemoteRef defines Provider data location.</p>
  4640. </p>
  4641. <table>
  4642. <thead>
  4643. <tr>
  4644. <th>Field</th>
  4645. <th>Description</th>
  4646. </tr>
  4647. </thead>
  4648. <tbody>
  4649. <tr>
  4650. <td>
  4651. <code>key</code></br>
  4652. <em>
  4653. string
  4654. </em>
  4655. </td>
  4656. <td>
  4657. <p>Key is the key used in the Provider, mandatory</p>
  4658. </td>
  4659. </tr>
  4660. <tr>
  4661. <td>
  4662. <code>metadataPolicy</code></br>
  4663. <em>
  4664. <a href="#external-secrets.io/v1.ExternalSecretMetadataPolicy">
  4665. ExternalSecretMetadataPolicy
  4666. </a>
  4667. </em>
  4668. </td>
  4669. <td>
  4670. <em>(Optional)</em>
  4671. <p>Policy for fetching tags/labels from provider secrets, possible options are Fetch, None. Defaults to None</p>
  4672. </td>
  4673. </tr>
  4674. <tr>
  4675. <td>
  4676. <code>property</code></br>
  4677. <em>
  4678. string
  4679. </em>
  4680. </td>
  4681. <td>
  4682. <em>(Optional)</em>
  4683. <p>Used to select a specific property of the Provider value (if a map), if supported</p>
  4684. </td>
  4685. </tr>
  4686. <tr>
  4687. <td>
  4688. <code>version</code></br>
  4689. <em>
  4690. string
  4691. </em>
  4692. </td>
  4693. <td>
  4694. <em>(Optional)</em>
  4695. <p>Used to select a specific version of the Provider value, if supported</p>
  4696. </td>
  4697. </tr>
  4698. <tr>
  4699. <td>
  4700. <code>conversionStrategy</code></br>
  4701. <em>
  4702. <a href="#external-secrets.io/v1.ExternalSecretConversionStrategy">
  4703. ExternalSecretConversionStrategy
  4704. </a>
  4705. </em>
  4706. </td>
  4707. <td>
  4708. <em>(Optional)</em>
  4709. <p>Used to define a conversion Strategy</p>
  4710. </td>
  4711. </tr>
  4712. <tr>
  4713. <td>
  4714. <code>decodingStrategy</code></br>
  4715. <em>
  4716. <a href="#external-secrets.io/v1.ExternalSecretDecodingStrategy">
  4717. ExternalSecretDecodingStrategy
  4718. </a>
  4719. </em>
  4720. </td>
  4721. <td>
  4722. <em>(Optional)</em>
  4723. <p>Used to define a decoding Strategy</p>
  4724. </td>
  4725. </tr>
  4726. </tbody>
  4727. </table>
  4728. <h3 id="external-secrets.io/v1.ExternalSecretDecodingStrategy">ExternalSecretDecodingStrategy
  4729. (<code>string</code> alias)</p></h3>
  4730. <p>
  4731. (<em>Appears on:</em>
  4732. <a href="#external-secrets.io/v1.ExternalSecretDataRemoteRef">ExternalSecretDataRemoteRef</a>,
  4733. <a href="#external-secrets.io/v1.ExternalSecretFind">ExternalSecretFind</a>)
  4734. </p>
  4735. <p>
  4736. </p>
  4737. <table>
  4738. <thead>
  4739. <tr>
  4740. <th>Value</th>
  4741. <th>Description</th>
  4742. </tr>
  4743. </thead>
  4744. <tbody><tr><td><p>&#34;Auto&#34;</p></td>
  4745. <td></td>
  4746. </tr><tr><td><p>&#34;Base64&#34;</p></td>
  4747. <td></td>
  4748. </tr><tr><td><p>&#34;Base64URL&#34;</p></td>
  4749. <td></td>
  4750. </tr><tr><td><p>&#34;None&#34;</p></td>
  4751. <td></td>
  4752. </tr></tbody>
  4753. </table>
  4754. <h3 id="external-secrets.io/v1.ExternalSecretDeletionPolicy">ExternalSecretDeletionPolicy
  4755. (<code>string</code> alias)</p></h3>
  4756. <p>
  4757. (<em>Appears on:</em>
  4758. <a href="#external-secrets.io/v1.ExternalSecretTarget">ExternalSecretTarget</a>)
  4759. </p>
  4760. <p>
  4761. <p>ExternalSecretDeletionPolicy defines rules on how to delete the resulting Secret.</p>
  4762. </p>
  4763. <table>
  4764. <thead>
  4765. <tr>
  4766. <th>Value</th>
  4767. <th>Description</th>
  4768. </tr>
  4769. </thead>
  4770. <tbody><tr><td><p>&#34;Delete&#34;</p></td>
  4771. <td><p>Delete deletes the secret if all provider secrets are deleted.
  4772. If a secret gets deleted on the provider side and is not accessible
  4773. anymore this is not considered an error and the ExternalSecret
  4774. does not go into SecretSyncedError status.</p>
  4775. </td>
  4776. </tr><tr><td><p>&#34;Merge&#34;</p></td>
  4777. <td><p>Merge removes keys in the secret, but not the secret itself.
  4778. If a secret gets deleted on the provider side and is not accessible
  4779. anymore this is not considered an error and the ExternalSecret
  4780. does not go into SecretSyncedError status.</p>
  4781. </td>
  4782. </tr><tr><td><p>&#34;Retain&#34;</p></td>
  4783. <td><p>Retain will retain the secret if all provider secrets have been deleted.
  4784. If a provider secret does not exist the ExternalSecret gets into the
  4785. SecretSyncedError status.</p>
  4786. </td>
  4787. </tr></tbody>
  4788. </table>
  4789. <h3 id="external-secrets.io/v1.ExternalSecretFind">ExternalSecretFind
  4790. </h3>
  4791. <p>
  4792. (<em>Appears on:</em>
  4793. <a href="#external-secrets.io/v1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef</a>)
  4794. </p>
  4795. <p>
  4796. </p>
  4797. <table>
  4798. <thead>
  4799. <tr>
  4800. <th>Field</th>
  4801. <th>Description</th>
  4802. </tr>
  4803. </thead>
  4804. <tbody>
  4805. <tr>
  4806. <td>
  4807. <code>path</code></br>
  4808. <em>
  4809. string
  4810. </em>
  4811. </td>
  4812. <td>
  4813. <em>(Optional)</em>
  4814. <p>A root path to start the find operations.</p>
  4815. </td>
  4816. </tr>
  4817. <tr>
  4818. <td>
  4819. <code>name</code></br>
  4820. <em>
  4821. <a href="#external-secrets.io/v1.FindName">
  4822. FindName
  4823. </a>
  4824. </em>
  4825. </td>
  4826. <td>
  4827. <em>(Optional)</em>
  4828. <p>Finds secrets based on the name.</p>
  4829. </td>
  4830. </tr>
  4831. <tr>
  4832. <td>
  4833. <code>tags</code></br>
  4834. <em>
  4835. map[string]string
  4836. </em>
  4837. </td>
  4838. <td>
  4839. <em>(Optional)</em>
  4840. <p>Find secrets based on tags.</p>
  4841. </td>
  4842. </tr>
  4843. <tr>
  4844. <td>
  4845. <code>conversionStrategy</code></br>
  4846. <em>
  4847. <a href="#external-secrets.io/v1.ExternalSecretConversionStrategy">
  4848. ExternalSecretConversionStrategy
  4849. </a>
  4850. </em>
  4851. </td>
  4852. <td>
  4853. <em>(Optional)</em>
  4854. <p>Used to define a conversion Strategy</p>
  4855. </td>
  4856. </tr>
  4857. <tr>
  4858. <td>
  4859. <code>decodingStrategy</code></br>
  4860. <em>
  4861. <a href="#external-secrets.io/v1.ExternalSecretDecodingStrategy">
  4862. ExternalSecretDecodingStrategy
  4863. </a>
  4864. </em>
  4865. </td>
  4866. <td>
  4867. <em>(Optional)</em>
  4868. <p>Used to define a decoding Strategy</p>
  4869. </td>
  4870. </tr>
  4871. </tbody>
  4872. </table>
  4873. <h3 id="external-secrets.io/v1.ExternalSecretMetadata">ExternalSecretMetadata
  4874. </h3>
  4875. <p>
  4876. (<em>Appears on:</em>
  4877. <a href="#external-secrets.io/v1.ClusterExternalSecretSpec">ClusterExternalSecretSpec</a>)
  4878. </p>
  4879. <p>
  4880. <p>ExternalSecretMetadata defines metadata fields for the ExternalSecret generated by the ClusterExternalSecret.</p>
  4881. </p>
  4882. <table>
  4883. <thead>
  4884. <tr>
  4885. <th>Field</th>
  4886. <th>Description</th>
  4887. </tr>
  4888. </thead>
  4889. <tbody>
  4890. <tr>
  4891. <td>
  4892. <code>annotations</code></br>
  4893. <em>
  4894. map[string]string
  4895. </em>
  4896. </td>
  4897. <td>
  4898. <em>(Optional)</em>
  4899. </td>
  4900. </tr>
  4901. <tr>
  4902. <td>
  4903. <code>labels</code></br>
  4904. <em>
  4905. map[string]string
  4906. </em>
  4907. </td>
  4908. <td>
  4909. <em>(Optional)</em>
  4910. </td>
  4911. </tr>
  4912. </tbody>
  4913. </table>
  4914. <h3 id="external-secrets.io/v1.ExternalSecretMetadataPolicy">ExternalSecretMetadataPolicy
  4915. (<code>string</code> alias)</p></h3>
  4916. <p>
  4917. (<em>Appears on:</em>
  4918. <a href="#external-secrets.io/v1.ExternalSecretDataRemoteRef">ExternalSecretDataRemoteRef</a>)
  4919. </p>
  4920. <p>
  4921. </p>
  4922. <table>
  4923. <thead>
  4924. <tr>
  4925. <th>Value</th>
  4926. <th>Description</th>
  4927. </tr>
  4928. </thead>
  4929. <tbody><tr><td><p>&#34;Fetch&#34;</p></td>
  4930. <td></td>
  4931. </tr><tr><td><p>&#34;None&#34;</p></td>
  4932. <td></td>
  4933. </tr></tbody>
  4934. </table>
  4935. <h3 id="external-secrets.io/v1.ExternalSecretRefreshPolicy">ExternalSecretRefreshPolicy
  4936. (<code>string</code> alias)</p></h3>
  4937. <p>
  4938. (<em>Appears on:</em>
  4939. <a href="#external-secrets.io/v1.ExternalSecretSpec">ExternalSecretSpec</a>)
  4940. </p>
  4941. <p>
  4942. </p>
  4943. <table>
  4944. <thead>
  4945. <tr>
  4946. <th>Value</th>
  4947. <th>Description</th>
  4948. </tr>
  4949. </thead>
  4950. <tbody><tr><td><p>&#34;CreatedOnce&#34;</p></td>
  4951. <td></td>
  4952. </tr><tr><td><p>&#34;OnChange&#34;</p></td>
  4953. <td></td>
  4954. </tr><tr><td><p>&#34;Periodic&#34;</p></td>
  4955. <td></td>
  4956. </tr></tbody>
  4957. </table>
  4958. <h3 id="external-secrets.io/v1.ExternalSecretRewrite">ExternalSecretRewrite
  4959. </h3>
  4960. <p>
  4961. (<em>Appears on:</em>
  4962. <a href="#external-secrets.io/v1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef</a>)
  4963. </p>
  4964. <p>
  4965. </p>
  4966. <table>
  4967. <thead>
  4968. <tr>
  4969. <th>Field</th>
  4970. <th>Description</th>
  4971. </tr>
  4972. </thead>
  4973. <tbody>
  4974. <tr>
  4975. <td>
  4976. <code>regexp</code></br>
  4977. <em>
  4978. <a href="#external-secrets.io/v1.ExternalSecretRewriteRegexp">
  4979. ExternalSecretRewriteRegexp
  4980. </a>
  4981. </em>
  4982. </td>
  4983. <td>
  4984. <em>(Optional)</em>
  4985. <p>Used to rewrite with regular expressions.
  4986. The resulting key will be the output of a regexp.ReplaceAll operation.</p>
  4987. </td>
  4988. </tr>
  4989. <tr>
  4990. <td>
  4991. <code>transform</code></br>
  4992. <em>
  4993. <a href="#external-secrets.io/v1.ExternalSecretRewriteTransform">
  4994. ExternalSecretRewriteTransform
  4995. </a>
  4996. </em>
  4997. </td>
  4998. <td>
  4999. <em>(Optional)</em>
  5000. <p>Used to apply string transformation on the secrets.
  5001. The resulting key will be the output of the template applied by the operation.</p>
  5002. </td>
  5003. </tr>
  5004. </tbody>
  5005. </table>
  5006. <h3 id="external-secrets.io/v1.ExternalSecretRewriteRegexp">ExternalSecretRewriteRegexp
  5007. </h3>
  5008. <p>
  5009. (<em>Appears on:</em>
  5010. <a href="#external-secrets.io/v1.ExternalSecretRewrite">ExternalSecretRewrite</a>)
  5011. </p>
  5012. <p>
  5013. </p>
  5014. <table>
  5015. <thead>
  5016. <tr>
  5017. <th>Field</th>
  5018. <th>Description</th>
  5019. </tr>
  5020. </thead>
  5021. <tbody>
  5022. <tr>
  5023. <td>
  5024. <code>source</code></br>
  5025. <em>
  5026. string
  5027. </em>
  5028. </td>
  5029. <td>
  5030. <p>Used to define the regular expression of a re.Compiler.</p>
  5031. </td>
  5032. </tr>
  5033. <tr>
  5034. <td>
  5035. <code>target</code></br>
  5036. <em>
  5037. string
  5038. </em>
  5039. </td>
  5040. <td>
  5041. <p>Used to define the target pattern of a ReplaceAll operation.</p>
  5042. </td>
  5043. </tr>
  5044. </tbody>
  5045. </table>
  5046. <h3 id="external-secrets.io/v1.ExternalSecretRewriteTransform">ExternalSecretRewriteTransform
  5047. </h3>
  5048. <p>
  5049. (<em>Appears on:</em>
  5050. <a href="#external-secrets.io/v1.ExternalSecretRewrite">ExternalSecretRewrite</a>)
  5051. </p>
  5052. <p>
  5053. </p>
  5054. <table>
  5055. <thead>
  5056. <tr>
  5057. <th>Field</th>
  5058. <th>Description</th>
  5059. </tr>
  5060. </thead>
  5061. <tbody>
  5062. <tr>
  5063. <td>
  5064. <code>template</code></br>
  5065. <em>
  5066. string
  5067. </em>
  5068. </td>
  5069. <td>
  5070. <p>Used to define the template to apply on the secret name.
  5071. <code>.value</code> will specify the secret name in the template.</p>
  5072. </td>
  5073. </tr>
  5074. </tbody>
  5075. </table>
  5076. <h3 id="external-secrets.io/v1.ExternalSecretSpec">ExternalSecretSpec
  5077. </h3>
  5078. <p>
  5079. (<em>Appears on:</em>
  5080. <a href="#external-secrets.io/v1.ClusterExternalSecretSpec">ClusterExternalSecretSpec</a>,
  5081. <a href="#external-secrets.io/v1.ExternalSecret">ExternalSecret</a>)
  5082. </p>
  5083. <p>
  5084. <p>ExternalSecretSpec defines the desired state of ExternalSecret.</p>
  5085. </p>
  5086. <table>
  5087. <thead>
  5088. <tr>
  5089. <th>Field</th>
  5090. <th>Description</th>
  5091. </tr>
  5092. </thead>
  5093. <tbody>
  5094. <tr>
  5095. <td>
  5096. <code>secretStoreRef</code></br>
  5097. <em>
  5098. <a href="#external-secrets.io/v1.SecretStoreRef">
  5099. SecretStoreRef
  5100. </a>
  5101. </em>
  5102. </td>
  5103. <td>
  5104. <em>(Optional)</em>
  5105. </td>
  5106. </tr>
  5107. <tr>
  5108. <td>
  5109. <code>target</code></br>
  5110. <em>
  5111. <a href="#external-secrets.io/v1.ExternalSecretTarget">
  5112. ExternalSecretTarget
  5113. </a>
  5114. </em>
  5115. </td>
  5116. <td>
  5117. <em>(Optional)</em>
  5118. </td>
  5119. </tr>
  5120. <tr>
  5121. <td>
  5122. <code>refreshPolicy</code></br>
  5123. <em>
  5124. <a href="#external-secrets.io/v1.ExternalSecretRefreshPolicy">
  5125. ExternalSecretRefreshPolicy
  5126. </a>
  5127. </em>
  5128. </td>
  5129. <td>
  5130. <em>(Optional)</em>
  5131. <p>RefreshPolicy determines how the ExternalSecret should be refreshed:
  5132. - CreatedOnce: Creates the Secret only if it does not exist and does not update it thereafter
  5133. - Periodic: Synchronizes the Secret from the external source at regular intervals specified by refreshInterval.
  5134. No periodic updates occur if refreshInterval is 0.
  5135. - OnChange: Only synchronizes the Secret when the ExternalSecret&rsquo;s metadata or specification changes</p>
  5136. </td>
  5137. </tr>
  5138. <tr>
  5139. <td>
  5140. <code>refreshInterval</code></br>
  5141. <em>
  5142. <a href="https://pkg.go.dev/k8s.io/apimachinery/pkg/apis/meta/v1#Duration">
  5143. Kubernetes meta/v1.Duration
  5144. </a>
  5145. </em>
  5146. </td>
  5147. <td>
  5148. <p>RefreshInterval is the amount of time before the values are read again from the SecretStore provider,
  5149. specified as Golang Duration strings.
  5150. Valid time units are &ldquo;ns&rdquo;, &ldquo;us&rdquo; (or &ldquo;µs&rdquo;), &ldquo;ms&rdquo;, &ldquo;s&rdquo;, &ldquo;m&rdquo;, &ldquo;h&rdquo;
  5151. Example values: &ldquo;1h&rdquo;, &ldquo;2h30m&rdquo;, &ldquo;10s&rdquo;
  5152. May be set to zero to fetch and create it once. Defaults to 1h.</p>
  5153. </td>
  5154. </tr>
  5155. <tr>
  5156. <td>
  5157. <code>data</code></br>
  5158. <em>
  5159. <a href="#external-secrets.io/v1.ExternalSecretData">
  5160. []ExternalSecretData
  5161. </a>
  5162. </em>
  5163. </td>
  5164. <td>
  5165. <em>(Optional)</em>
  5166. <p>Data defines the connection between the Kubernetes Secret keys and the Provider data</p>
  5167. </td>
  5168. </tr>
  5169. <tr>
  5170. <td>
  5171. <code>dataFrom</code></br>
  5172. <em>
  5173. <a href="#external-secrets.io/v1.ExternalSecretDataFromRemoteRef">
  5174. []ExternalSecretDataFromRemoteRef
  5175. </a>
  5176. </em>
  5177. </td>
  5178. <td>
  5179. <em>(Optional)</em>
  5180. <p>DataFrom is used to fetch all properties from a specific Provider data
  5181. If multiple entries are specified, the Secret keys are merged in the specified order</p>
  5182. </td>
  5183. </tr>
  5184. </tbody>
  5185. </table>
  5186. <h3 id="external-secrets.io/v1.ExternalSecretStatus">ExternalSecretStatus
  5187. </h3>
  5188. <p>
  5189. (<em>Appears on:</em>
  5190. <a href="#external-secrets.io/v1.ExternalSecret">ExternalSecret</a>)
  5191. </p>
  5192. <p>
  5193. </p>
  5194. <table>
  5195. <thead>
  5196. <tr>
  5197. <th>Field</th>
  5198. <th>Description</th>
  5199. </tr>
  5200. </thead>
  5201. <tbody>
  5202. <tr>
  5203. <td>
  5204. <code>refreshTime</code></br>
  5205. <em>
  5206. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#time-v1-meta">
  5207. Kubernetes meta/v1.Time
  5208. </a>
  5209. </em>
  5210. </td>
  5211. <td>
  5212. <p>refreshTime is the time and date the external secret was fetched and
  5213. the target secret updated</p>
  5214. </td>
  5215. </tr>
  5216. <tr>
  5217. <td>
  5218. <code>syncedResourceVersion</code></br>
  5219. <em>
  5220. string
  5221. </em>
  5222. </td>
  5223. <td>
  5224. <p>SyncedResourceVersion keeps track of the last synced version</p>
  5225. </td>
  5226. </tr>
  5227. <tr>
  5228. <td>
  5229. <code>conditions</code></br>
  5230. <em>
  5231. <a href="#external-secrets.io/v1.ExternalSecretStatusCondition">
  5232. []ExternalSecretStatusCondition
  5233. </a>
  5234. </em>
  5235. </td>
  5236. <td>
  5237. <em>(Optional)</em>
  5238. </td>
  5239. </tr>
  5240. <tr>
  5241. <td>
  5242. <code>binding</code></br>
  5243. <em>
  5244. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#localobjectreference-v1-core">
  5245. Kubernetes core/v1.LocalObjectReference
  5246. </a>
  5247. </em>
  5248. </td>
  5249. <td>
  5250. <p>Binding represents a servicebinding.io Provisioned Service reference to the secret</p>
  5251. </td>
  5252. </tr>
  5253. </tbody>
  5254. </table>
  5255. <h3 id="external-secrets.io/v1.ExternalSecretStatusCondition">ExternalSecretStatusCondition
  5256. </h3>
  5257. <p>
  5258. (<em>Appears on:</em>
  5259. <a href="#external-secrets.io/v1.ExternalSecretStatus">ExternalSecretStatus</a>)
  5260. </p>
  5261. <p>
  5262. </p>
  5263. <table>
  5264. <thead>
  5265. <tr>
  5266. <th>Field</th>
  5267. <th>Description</th>
  5268. </tr>
  5269. </thead>
  5270. <tbody>
  5271. <tr>
  5272. <td>
  5273. <code>type</code></br>
  5274. <em>
  5275. <a href="#external-secrets.io/v1.ExternalSecretConditionType">
  5276. ExternalSecretConditionType
  5277. </a>
  5278. </em>
  5279. </td>
  5280. <td>
  5281. </td>
  5282. </tr>
  5283. <tr>
  5284. <td>
  5285. <code>status</code></br>
  5286. <em>
  5287. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#conditionstatus-v1-core">
  5288. Kubernetes core/v1.ConditionStatus
  5289. </a>
  5290. </em>
  5291. </td>
  5292. <td>
  5293. </td>
  5294. </tr>
  5295. <tr>
  5296. <td>
  5297. <code>reason</code></br>
  5298. <em>
  5299. string
  5300. </em>
  5301. </td>
  5302. <td>
  5303. <em>(Optional)</em>
  5304. </td>
  5305. </tr>
  5306. <tr>
  5307. <td>
  5308. <code>message</code></br>
  5309. <em>
  5310. string
  5311. </em>
  5312. </td>
  5313. <td>
  5314. <em>(Optional)</em>
  5315. </td>
  5316. </tr>
  5317. <tr>
  5318. <td>
  5319. <code>lastTransitionTime</code></br>
  5320. <em>
  5321. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#time-v1-meta">
  5322. Kubernetes meta/v1.Time
  5323. </a>
  5324. </em>
  5325. </td>
  5326. <td>
  5327. <em>(Optional)</em>
  5328. </td>
  5329. </tr>
  5330. </tbody>
  5331. </table>
  5332. <h3 id="external-secrets.io/v1.ExternalSecretTarget">ExternalSecretTarget
  5333. </h3>
  5334. <p>
  5335. (<em>Appears on:</em>
  5336. <a href="#external-secrets.io/v1.ExternalSecretSpec">ExternalSecretSpec</a>)
  5337. </p>
  5338. <p>
  5339. <p>ExternalSecretTarget defines the Kubernetes Secret to be created
  5340. There can be only one target per ExternalSecret.</p>
  5341. </p>
  5342. <table>
  5343. <thead>
  5344. <tr>
  5345. <th>Field</th>
  5346. <th>Description</th>
  5347. </tr>
  5348. </thead>
  5349. <tbody>
  5350. <tr>
  5351. <td>
  5352. <code>name</code></br>
  5353. <em>
  5354. string
  5355. </em>
  5356. </td>
  5357. <td>
  5358. <em>(Optional)</em>
  5359. <p>The name of the Secret resource to be managed.
  5360. Defaults to the .metadata.name of the ExternalSecret resource</p>
  5361. </td>
  5362. </tr>
  5363. <tr>
  5364. <td>
  5365. <code>creationPolicy</code></br>
  5366. <em>
  5367. <a href="#external-secrets.io/v1.ExternalSecretCreationPolicy">
  5368. ExternalSecretCreationPolicy
  5369. </a>
  5370. </em>
  5371. </td>
  5372. <td>
  5373. <em>(Optional)</em>
  5374. <p>CreationPolicy defines rules on how to create the resulting Secret.
  5375. Defaults to &ldquo;Owner&rdquo;</p>
  5376. </td>
  5377. </tr>
  5378. <tr>
  5379. <td>
  5380. <code>deletionPolicy</code></br>
  5381. <em>
  5382. <a href="#external-secrets.io/v1.ExternalSecretDeletionPolicy">
  5383. ExternalSecretDeletionPolicy
  5384. </a>
  5385. </em>
  5386. </td>
  5387. <td>
  5388. <em>(Optional)</em>
  5389. <p>DeletionPolicy defines rules on how to delete the resulting Secret.
  5390. Defaults to &ldquo;Retain&rdquo;</p>
  5391. </td>
  5392. </tr>
  5393. <tr>
  5394. <td>
  5395. <code>template</code></br>
  5396. <em>
  5397. <a href="#external-secrets.io/v1.ExternalSecretTemplate">
  5398. ExternalSecretTemplate
  5399. </a>
  5400. </em>
  5401. </td>
  5402. <td>
  5403. <em>(Optional)</em>
  5404. <p>Template defines a blueprint for the created Secret resource.</p>
  5405. </td>
  5406. </tr>
  5407. <tr>
  5408. <td>
  5409. <code>immutable</code></br>
  5410. <em>
  5411. bool
  5412. </em>
  5413. </td>
  5414. <td>
  5415. <em>(Optional)</em>
  5416. <p>Immutable defines if the final secret will be immutable</p>
  5417. </td>
  5418. </tr>
  5419. </tbody>
  5420. </table>
  5421. <h3 id="external-secrets.io/v1.ExternalSecretTemplate">ExternalSecretTemplate
  5422. </h3>
  5423. <p>
  5424. (<em>Appears on:</em>
  5425. <a href="#external-secrets.io/v1.ExternalSecretTarget">ExternalSecretTarget</a>)
  5426. </p>
  5427. <p>
  5428. <p>ExternalSecretTemplate defines a blueprint for the created Secret resource.
  5429. we can not use native corev1.Secret, it will have empty ObjectMeta values: <a href="https://github.com/kubernetes-sigs/controller-tools/issues/448">https://github.com/kubernetes-sigs/controller-tools/issues/448</a></p>
  5430. </p>
  5431. <table>
  5432. <thead>
  5433. <tr>
  5434. <th>Field</th>
  5435. <th>Description</th>
  5436. </tr>
  5437. </thead>
  5438. <tbody>
  5439. <tr>
  5440. <td>
  5441. <code>type</code></br>
  5442. <em>
  5443. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#secrettype-v1-core">
  5444. Kubernetes core/v1.SecretType
  5445. </a>
  5446. </em>
  5447. </td>
  5448. <td>
  5449. <em>(Optional)</em>
  5450. </td>
  5451. </tr>
  5452. <tr>
  5453. <td>
  5454. <code>engineVersion</code></br>
  5455. <em>
  5456. <a href="#external-secrets.io/v1.TemplateEngineVersion">
  5457. TemplateEngineVersion
  5458. </a>
  5459. </em>
  5460. </td>
  5461. <td>
  5462. <p>EngineVersion specifies the template engine version
  5463. that should be used to compile/execute the
  5464. template specified in .data and .templateFrom[].</p>
  5465. </td>
  5466. </tr>
  5467. <tr>
  5468. <td>
  5469. <code>metadata</code></br>
  5470. <em>
  5471. <a href="#external-secrets.io/v1.ExternalSecretTemplateMetadata">
  5472. ExternalSecretTemplateMetadata
  5473. </a>
  5474. </em>
  5475. </td>
  5476. <td>
  5477. <em>(Optional)</em>
  5478. </td>
  5479. </tr>
  5480. <tr>
  5481. <td>
  5482. <code>mergePolicy</code></br>
  5483. <em>
  5484. <a href="#external-secrets.io/v1.TemplateMergePolicy">
  5485. TemplateMergePolicy
  5486. </a>
  5487. </em>
  5488. </td>
  5489. <td>
  5490. </td>
  5491. </tr>
  5492. <tr>
  5493. <td>
  5494. <code>data</code></br>
  5495. <em>
  5496. map[string]string
  5497. </em>
  5498. </td>
  5499. <td>
  5500. <em>(Optional)</em>
  5501. </td>
  5502. </tr>
  5503. <tr>
  5504. <td>
  5505. <code>templateFrom</code></br>
  5506. <em>
  5507. <a href="#external-secrets.io/v1.TemplateFrom">
  5508. []TemplateFrom
  5509. </a>
  5510. </em>
  5511. </td>
  5512. <td>
  5513. <em>(Optional)</em>
  5514. </td>
  5515. </tr>
  5516. </tbody>
  5517. </table>
  5518. <h3 id="external-secrets.io/v1.ExternalSecretTemplateMetadata">ExternalSecretTemplateMetadata
  5519. </h3>
  5520. <p>
  5521. (<em>Appears on:</em>
  5522. <a href="#external-secrets.io/v1.ExternalSecretTemplate">ExternalSecretTemplate</a>)
  5523. </p>
  5524. <p>
  5525. <p>ExternalSecretTemplateMetadata defines metadata fields for the Secret blueprint.</p>
  5526. </p>
  5527. <table>
  5528. <thead>
  5529. <tr>
  5530. <th>Field</th>
  5531. <th>Description</th>
  5532. </tr>
  5533. </thead>
  5534. <tbody>
  5535. <tr>
  5536. <td>
  5537. <code>annotations</code></br>
  5538. <em>
  5539. map[string]string
  5540. </em>
  5541. </td>
  5542. <td>
  5543. <em>(Optional)</em>
  5544. </td>
  5545. </tr>
  5546. <tr>
  5547. <td>
  5548. <code>labels</code></br>
  5549. <em>
  5550. map[string]string
  5551. </em>
  5552. </td>
  5553. <td>
  5554. <em>(Optional)</em>
  5555. </td>
  5556. </tr>
  5557. </tbody>
  5558. </table>
  5559. <h3 id="external-secrets.io/v1.ExternalSecretValidator">ExternalSecretValidator
  5560. </h3>
  5561. <p>
  5562. </p>
  5563. <h3 id="external-secrets.io/v1.FakeProvider">FakeProvider
  5564. </h3>
  5565. <p>
  5566. (<em>Appears on:</em>
  5567. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  5568. </p>
  5569. <p>
  5570. <p>FakeProvider configures a fake provider that returns static values.</p>
  5571. </p>
  5572. <table>
  5573. <thead>
  5574. <tr>
  5575. <th>Field</th>
  5576. <th>Description</th>
  5577. </tr>
  5578. </thead>
  5579. <tbody>
  5580. <tr>
  5581. <td>
  5582. <code>data</code></br>
  5583. <em>
  5584. <a href="#external-secrets.io/v1.FakeProviderData">
  5585. []FakeProviderData
  5586. </a>
  5587. </em>
  5588. </td>
  5589. <td>
  5590. </td>
  5591. </tr>
  5592. </tbody>
  5593. </table>
  5594. <h3 id="external-secrets.io/v1.FakeProviderData">FakeProviderData
  5595. </h3>
  5596. <p>
  5597. (<em>Appears on:</em>
  5598. <a href="#external-secrets.io/v1.FakeProvider">FakeProvider</a>)
  5599. </p>
  5600. <p>
  5601. </p>
  5602. <table>
  5603. <thead>
  5604. <tr>
  5605. <th>Field</th>
  5606. <th>Description</th>
  5607. </tr>
  5608. </thead>
  5609. <tbody>
  5610. <tr>
  5611. <td>
  5612. <code>key</code></br>
  5613. <em>
  5614. string
  5615. </em>
  5616. </td>
  5617. <td>
  5618. </td>
  5619. </tr>
  5620. <tr>
  5621. <td>
  5622. <code>value</code></br>
  5623. <em>
  5624. string
  5625. </em>
  5626. </td>
  5627. <td>
  5628. </td>
  5629. </tr>
  5630. <tr>
  5631. <td>
  5632. <code>version</code></br>
  5633. <em>
  5634. string
  5635. </em>
  5636. </td>
  5637. <td>
  5638. </td>
  5639. </tr>
  5640. </tbody>
  5641. </table>
  5642. <h3 id="external-secrets.io/v1.FindName">FindName
  5643. </h3>
  5644. <p>
  5645. (<em>Appears on:</em>
  5646. <a href="#external-secrets.io/v1.ExternalSecretFind">ExternalSecretFind</a>)
  5647. </p>
  5648. <p>
  5649. </p>
  5650. <table>
  5651. <thead>
  5652. <tr>
  5653. <th>Field</th>
  5654. <th>Description</th>
  5655. </tr>
  5656. </thead>
  5657. <tbody>
  5658. <tr>
  5659. <td>
  5660. <code>regexp</code></br>
  5661. <em>
  5662. string
  5663. </em>
  5664. </td>
  5665. <td>
  5666. <em>(Optional)</em>
  5667. <p>Finds secrets base</p>
  5668. </td>
  5669. </tr>
  5670. </tbody>
  5671. </table>
  5672. <h3 id="external-secrets.io/v1.FortanixProvider">FortanixProvider
  5673. </h3>
  5674. <p>
  5675. (<em>Appears on:</em>
  5676. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  5677. </p>
  5678. <p>
  5679. </p>
  5680. <table>
  5681. <thead>
  5682. <tr>
  5683. <th>Field</th>
  5684. <th>Description</th>
  5685. </tr>
  5686. </thead>
  5687. <tbody>
  5688. <tr>
  5689. <td>
  5690. <code>apiUrl</code></br>
  5691. <em>
  5692. string
  5693. </em>
  5694. </td>
  5695. <td>
  5696. <p>APIURL is the URL of SDKMS API. Defaults to <code>sdkms.fortanix.com</code>.</p>
  5697. </td>
  5698. </tr>
  5699. <tr>
  5700. <td>
  5701. <code>apiKey</code></br>
  5702. <em>
  5703. <a href="#external-secrets.io/v1.FortanixProviderSecretRef">
  5704. FortanixProviderSecretRef
  5705. </a>
  5706. </em>
  5707. </td>
  5708. <td>
  5709. <p>APIKey is the API token to access SDKMS Applications.</p>
  5710. </td>
  5711. </tr>
  5712. </tbody>
  5713. </table>
  5714. <h3 id="external-secrets.io/v1.FortanixProviderSecretRef">FortanixProviderSecretRef
  5715. </h3>
  5716. <p>
  5717. (<em>Appears on:</em>
  5718. <a href="#external-secrets.io/v1.FortanixProvider">FortanixProvider</a>)
  5719. </p>
  5720. <p>
  5721. </p>
  5722. <table>
  5723. <thead>
  5724. <tr>
  5725. <th>Field</th>
  5726. <th>Description</th>
  5727. </tr>
  5728. </thead>
  5729. <tbody>
  5730. <tr>
  5731. <td>
  5732. <code>secretRef</code></br>
  5733. <em>
  5734. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  5735. External Secrets meta/v1.SecretKeySelector
  5736. </a>
  5737. </em>
  5738. </td>
  5739. <td>
  5740. <p>SecretRef is a reference to a secret containing the SDKMS API Key.</p>
  5741. </td>
  5742. </tr>
  5743. </tbody>
  5744. </table>
  5745. <h3 id="external-secrets.io/v1.GCPSMAuth">GCPSMAuth
  5746. </h3>
  5747. <p>
  5748. (<em>Appears on:</em>
  5749. <a href="#external-secrets.io/v1.GCPSMProvider">GCPSMProvider</a>)
  5750. </p>
  5751. <p>
  5752. </p>
  5753. <table>
  5754. <thead>
  5755. <tr>
  5756. <th>Field</th>
  5757. <th>Description</th>
  5758. </tr>
  5759. </thead>
  5760. <tbody>
  5761. <tr>
  5762. <td>
  5763. <code>secretRef</code></br>
  5764. <em>
  5765. <a href="#external-secrets.io/v1.GCPSMAuthSecretRef">
  5766. GCPSMAuthSecretRef
  5767. </a>
  5768. </em>
  5769. </td>
  5770. <td>
  5771. <em>(Optional)</em>
  5772. </td>
  5773. </tr>
  5774. <tr>
  5775. <td>
  5776. <code>workloadIdentity</code></br>
  5777. <em>
  5778. <a href="#external-secrets.io/v1.GCPWorkloadIdentity">
  5779. GCPWorkloadIdentity
  5780. </a>
  5781. </em>
  5782. </td>
  5783. <td>
  5784. <em>(Optional)</em>
  5785. </td>
  5786. </tr>
  5787. </tbody>
  5788. </table>
  5789. <h3 id="external-secrets.io/v1.GCPSMAuthSecretRef">GCPSMAuthSecretRef
  5790. </h3>
  5791. <p>
  5792. (<em>Appears on:</em>
  5793. <a href="#external-secrets.io/v1.GCPSMAuth">GCPSMAuth</a>)
  5794. </p>
  5795. <p>
  5796. </p>
  5797. <table>
  5798. <thead>
  5799. <tr>
  5800. <th>Field</th>
  5801. <th>Description</th>
  5802. </tr>
  5803. </thead>
  5804. <tbody>
  5805. <tr>
  5806. <td>
  5807. <code>secretAccessKeySecretRef</code></br>
  5808. <em>
  5809. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  5810. External Secrets meta/v1.SecretKeySelector
  5811. </a>
  5812. </em>
  5813. </td>
  5814. <td>
  5815. <em>(Optional)</em>
  5816. <p>The SecretAccessKey is used for authentication</p>
  5817. </td>
  5818. </tr>
  5819. </tbody>
  5820. </table>
  5821. <h3 id="external-secrets.io/v1.GCPSMProvider">GCPSMProvider
  5822. </h3>
  5823. <p>
  5824. (<em>Appears on:</em>
  5825. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  5826. </p>
  5827. <p>
  5828. <p>GCPSMProvider Configures a store to sync secrets using the GCP Secret Manager provider.</p>
  5829. </p>
  5830. <table>
  5831. <thead>
  5832. <tr>
  5833. <th>Field</th>
  5834. <th>Description</th>
  5835. </tr>
  5836. </thead>
  5837. <tbody>
  5838. <tr>
  5839. <td>
  5840. <code>auth</code></br>
  5841. <em>
  5842. <a href="#external-secrets.io/v1.GCPSMAuth">
  5843. GCPSMAuth
  5844. </a>
  5845. </em>
  5846. </td>
  5847. <td>
  5848. <em>(Optional)</em>
  5849. <p>Auth defines the information necessary to authenticate against GCP</p>
  5850. </td>
  5851. </tr>
  5852. <tr>
  5853. <td>
  5854. <code>projectID</code></br>
  5855. <em>
  5856. string
  5857. </em>
  5858. </td>
  5859. <td>
  5860. <p>ProjectID project where secret is located</p>
  5861. </td>
  5862. </tr>
  5863. <tr>
  5864. <td>
  5865. <code>location</code></br>
  5866. <em>
  5867. string
  5868. </em>
  5869. </td>
  5870. <td>
  5871. <p>Location optionally defines a location for a secret</p>
  5872. </td>
  5873. </tr>
  5874. </tbody>
  5875. </table>
  5876. <h3 id="external-secrets.io/v1.GCPWorkloadIdentity">GCPWorkloadIdentity
  5877. </h3>
  5878. <p>
  5879. (<em>Appears on:</em>
  5880. <a href="#external-secrets.io/v1.GCPSMAuth">GCPSMAuth</a>)
  5881. </p>
  5882. <p>
  5883. </p>
  5884. <table>
  5885. <thead>
  5886. <tr>
  5887. <th>Field</th>
  5888. <th>Description</th>
  5889. </tr>
  5890. </thead>
  5891. <tbody>
  5892. <tr>
  5893. <td>
  5894. <code>serviceAccountRef</code></br>
  5895. <em>
  5896. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  5897. External Secrets meta/v1.ServiceAccountSelector
  5898. </a>
  5899. </em>
  5900. </td>
  5901. <td>
  5902. </td>
  5903. </tr>
  5904. <tr>
  5905. <td>
  5906. <code>clusterLocation</code></br>
  5907. <em>
  5908. string
  5909. </em>
  5910. </td>
  5911. <td>
  5912. <em>(Optional)</em>
  5913. <p>ClusterLocation is the location of the cluster
  5914. If not specified, it fetches information from the metadata server</p>
  5915. </td>
  5916. </tr>
  5917. <tr>
  5918. <td>
  5919. <code>clusterName</code></br>
  5920. <em>
  5921. string
  5922. </em>
  5923. </td>
  5924. <td>
  5925. <em>(Optional)</em>
  5926. <p>ClusterName is the name of the cluster
  5927. If not specified, it fetches information from the metadata server</p>
  5928. </td>
  5929. </tr>
  5930. <tr>
  5931. <td>
  5932. <code>clusterProjectID</code></br>
  5933. <em>
  5934. string
  5935. </em>
  5936. </td>
  5937. <td>
  5938. <em>(Optional)</em>
  5939. <p>ClusterProjectID is the project ID of the cluster
  5940. If not specified, it fetches information from the metadata server</p>
  5941. </td>
  5942. </tr>
  5943. </tbody>
  5944. </table>
  5945. <h3 id="external-secrets.io/v1.GeneratorRef">GeneratorRef
  5946. </h3>
  5947. <p>
  5948. (<em>Appears on:</em>
  5949. <a href="#external-secrets.io/v1.StoreGeneratorSourceRef">StoreGeneratorSourceRef</a>,
  5950. <a href="#external-secrets.io/v1.StoreSourceRef">StoreSourceRef</a>)
  5951. </p>
  5952. <p>
  5953. <p>GeneratorRef points to a generator custom resource.</p>
  5954. </p>
  5955. <table>
  5956. <thead>
  5957. <tr>
  5958. <th>Field</th>
  5959. <th>Description</th>
  5960. </tr>
  5961. </thead>
  5962. <tbody>
  5963. <tr>
  5964. <td>
  5965. <code>apiVersion</code></br>
  5966. <em>
  5967. string
  5968. </em>
  5969. </td>
  5970. <td>
  5971. <p>Specify the apiVersion of the generator resource</p>
  5972. </td>
  5973. </tr>
  5974. <tr>
  5975. <td>
  5976. <code>kind</code></br>
  5977. <em>
  5978. string
  5979. </em>
  5980. </td>
  5981. <td>
  5982. <p>Specify the Kind of the generator resource</p>
  5983. </td>
  5984. </tr>
  5985. <tr>
  5986. <td>
  5987. <code>name</code></br>
  5988. <em>
  5989. string
  5990. </em>
  5991. </td>
  5992. <td>
  5993. <p>Specify the name of the generator resource</p>
  5994. </td>
  5995. </tr>
  5996. </tbody>
  5997. </table>
  5998. <h3 id="external-secrets.io/v1.GenericStore">GenericStore
  5999. </h3>
  6000. <p>
  6001. <p>GenericStore is a common interface for interacting with ClusterSecretStore
  6002. or a namespaced SecretStore.</p>
  6003. </p>
  6004. <h3 id="external-secrets.io/v1.GenericStoreValidator">GenericStoreValidator
  6005. </h3>
  6006. <p>
  6007. </p>
  6008. <h3 id="external-secrets.io/v1.GithubAppAuth">GithubAppAuth
  6009. </h3>
  6010. <p>
  6011. (<em>Appears on:</em>
  6012. <a href="#external-secrets.io/v1.GithubProvider">GithubProvider</a>)
  6013. </p>
  6014. <p>
  6015. </p>
  6016. <table>
  6017. <thead>
  6018. <tr>
  6019. <th>Field</th>
  6020. <th>Description</th>
  6021. </tr>
  6022. </thead>
  6023. <tbody>
  6024. <tr>
  6025. <td>
  6026. <code>privateKey</code></br>
  6027. <em>
  6028. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  6029. External Secrets meta/v1.SecretKeySelector
  6030. </a>
  6031. </em>
  6032. </td>
  6033. <td>
  6034. </td>
  6035. </tr>
  6036. </tbody>
  6037. </table>
  6038. <h3 id="external-secrets.io/v1.GithubProvider">GithubProvider
  6039. </h3>
  6040. <p>
  6041. (<em>Appears on:</em>
  6042. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  6043. </p>
  6044. <p>
  6045. <p>Configures a store to push secrets to Github Actions.</p>
  6046. </p>
  6047. <table>
  6048. <thead>
  6049. <tr>
  6050. <th>Field</th>
  6051. <th>Description</th>
  6052. </tr>
  6053. </thead>
  6054. <tbody>
  6055. <tr>
  6056. <td>
  6057. <code>url</code></br>
  6058. <em>
  6059. string
  6060. </em>
  6061. </td>
  6062. <td>
  6063. <p>URL configures the Github instance URL. Defaults to <a href="https://github.com/">https://github.com/</a>.</p>
  6064. </td>
  6065. </tr>
  6066. <tr>
  6067. <td>
  6068. <code>uploadURL</code></br>
  6069. <em>
  6070. string
  6071. </em>
  6072. </td>
  6073. <td>
  6074. <em>(Optional)</em>
  6075. <p>Upload URL for enterprise instances. Default to URL.</p>
  6076. </td>
  6077. </tr>
  6078. <tr>
  6079. <td>
  6080. <code>auth</code></br>
  6081. <em>
  6082. <a href="#external-secrets.io/v1.GithubAppAuth">
  6083. GithubAppAuth
  6084. </a>
  6085. </em>
  6086. </td>
  6087. <td>
  6088. <p>auth configures how secret-manager authenticates with a Github instance.</p>
  6089. </td>
  6090. </tr>
  6091. <tr>
  6092. <td>
  6093. <code>appID</code></br>
  6094. <em>
  6095. int64
  6096. </em>
  6097. </td>
  6098. <td>
  6099. <p>appID specifies the Github APP that will be used to authenticate the client</p>
  6100. </td>
  6101. </tr>
  6102. <tr>
  6103. <td>
  6104. <code>installationID</code></br>
  6105. <em>
  6106. int64
  6107. </em>
  6108. </td>
  6109. <td>
  6110. <p>installationID specifies the Github APP installation that will be used to authenticate the client</p>
  6111. </td>
  6112. </tr>
  6113. <tr>
  6114. <td>
  6115. <code>organization</code></br>
  6116. <em>
  6117. string
  6118. </em>
  6119. </td>
  6120. <td>
  6121. <p>organization will be used to fetch secrets from the Github organization</p>
  6122. </td>
  6123. </tr>
  6124. <tr>
  6125. <td>
  6126. <code>repository</code></br>
  6127. <em>
  6128. string
  6129. </em>
  6130. </td>
  6131. <td>
  6132. <em>(Optional)</em>
  6133. <p>repository will be used to fetch secrets from the Github repository within an organization</p>
  6134. </td>
  6135. </tr>
  6136. <tr>
  6137. <td>
  6138. <code>environment</code></br>
  6139. <em>
  6140. string
  6141. </em>
  6142. </td>
  6143. <td>
  6144. <em>(Optional)</em>
  6145. <p>environment will be used to fetch secrets from a particular environment within a github repository</p>
  6146. </td>
  6147. </tr>
  6148. </tbody>
  6149. </table>
  6150. <h3 id="external-secrets.io/v1.GitlabAuth">GitlabAuth
  6151. </h3>
  6152. <p>
  6153. (<em>Appears on:</em>
  6154. <a href="#external-secrets.io/v1.GitlabProvider">GitlabProvider</a>)
  6155. </p>
  6156. <p>
  6157. </p>
  6158. <table>
  6159. <thead>
  6160. <tr>
  6161. <th>Field</th>
  6162. <th>Description</th>
  6163. </tr>
  6164. </thead>
  6165. <tbody>
  6166. <tr>
  6167. <td>
  6168. <code>SecretRef</code></br>
  6169. <em>
  6170. <a href="#external-secrets.io/v1.GitlabSecretRef">
  6171. GitlabSecretRef
  6172. </a>
  6173. </em>
  6174. </td>
  6175. <td>
  6176. </td>
  6177. </tr>
  6178. </tbody>
  6179. </table>
  6180. <h3 id="external-secrets.io/v1.GitlabProvider">GitlabProvider
  6181. </h3>
  6182. <p>
  6183. (<em>Appears on:</em>
  6184. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  6185. </p>
  6186. <p>
  6187. <p>Configures a store to sync secrets with a GitLab instance.</p>
  6188. </p>
  6189. <table>
  6190. <thead>
  6191. <tr>
  6192. <th>Field</th>
  6193. <th>Description</th>
  6194. </tr>
  6195. </thead>
  6196. <tbody>
  6197. <tr>
  6198. <td>
  6199. <code>url</code></br>
  6200. <em>
  6201. string
  6202. </em>
  6203. </td>
  6204. <td>
  6205. <p>URL configures the GitLab instance URL. Defaults to <a href="https://gitlab.com/">https://gitlab.com/</a>.</p>
  6206. </td>
  6207. </tr>
  6208. <tr>
  6209. <td>
  6210. <code>auth</code></br>
  6211. <em>
  6212. <a href="#external-secrets.io/v1.GitlabAuth">
  6213. GitlabAuth
  6214. </a>
  6215. </em>
  6216. </td>
  6217. <td>
  6218. <p>Auth configures how secret-manager authenticates with a GitLab instance.</p>
  6219. </td>
  6220. </tr>
  6221. <tr>
  6222. <td>
  6223. <code>projectID</code></br>
  6224. <em>
  6225. string
  6226. </em>
  6227. </td>
  6228. <td>
  6229. <p>ProjectID specifies a project where secrets are located.</p>
  6230. </td>
  6231. </tr>
  6232. <tr>
  6233. <td>
  6234. <code>inheritFromGroups</code></br>
  6235. <em>
  6236. bool
  6237. </em>
  6238. </td>
  6239. <td>
  6240. <p>InheritFromGroups specifies whether parent groups should be discovered and checked for secrets.</p>
  6241. </td>
  6242. </tr>
  6243. <tr>
  6244. <td>
  6245. <code>groupIDs</code></br>
  6246. <em>
  6247. []string
  6248. </em>
  6249. </td>
  6250. <td>
  6251. <p>GroupIDs specify, which gitlab groups to pull secrets from. Group secrets are read from left to right followed by the project variables.</p>
  6252. </td>
  6253. </tr>
  6254. <tr>
  6255. <td>
  6256. <code>environment</code></br>
  6257. <em>
  6258. string
  6259. </em>
  6260. </td>
  6261. <td>
  6262. <p>Environment environment_scope of gitlab CI/CD variables (Please see <a href="https://docs.gitlab.com/ee/ci/environments/#create-a-static-environment">https://docs.gitlab.com/ee/ci/environments/#create-a-static-environment</a> on how to create environments)</p>
  6263. </td>
  6264. </tr>
  6265. </tbody>
  6266. </table>
  6267. <h3 id="external-secrets.io/v1.GitlabSecretRef">GitlabSecretRef
  6268. </h3>
  6269. <p>
  6270. (<em>Appears on:</em>
  6271. <a href="#external-secrets.io/v1.GitlabAuth">GitlabAuth</a>)
  6272. </p>
  6273. <p>
  6274. </p>
  6275. <table>
  6276. <thead>
  6277. <tr>
  6278. <th>Field</th>
  6279. <th>Description</th>
  6280. </tr>
  6281. </thead>
  6282. <tbody>
  6283. <tr>
  6284. <td>
  6285. <code>accessToken</code></br>
  6286. <em>
  6287. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  6288. External Secrets meta/v1.SecretKeySelector
  6289. </a>
  6290. </em>
  6291. </td>
  6292. <td>
  6293. <p>AccessToken is used for authentication.</p>
  6294. </td>
  6295. </tr>
  6296. </tbody>
  6297. </table>
  6298. <h3 id="external-secrets.io/v1.IBMAuth">IBMAuth
  6299. </h3>
  6300. <p>
  6301. (<em>Appears on:</em>
  6302. <a href="#external-secrets.io/v1.IBMProvider">IBMProvider</a>)
  6303. </p>
  6304. <p>
  6305. </p>
  6306. <table>
  6307. <thead>
  6308. <tr>
  6309. <th>Field</th>
  6310. <th>Description</th>
  6311. </tr>
  6312. </thead>
  6313. <tbody>
  6314. <tr>
  6315. <td>
  6316. <code>secretRef</code></br>
  6317. <em>
  6318. <a href="#external-secrets.io/v1.IBMAuthSecretRef">
  6319. IBMAuthSecretRef
  6320. </a>
  6321. </em>
  6322. </td>
  6323. <td>
  6324. </td>
  6325. </tr>
  6326. <tr>
  6327. <td>
  6328. <code>containerAuth</code></br>
  6329. <em>
  6330. <a href="#external-secrets.io/v1.IBMAuthContainerAuth">
  6331. IBMAuthContainerAuth
  6332. </a>
  6333. </em>
  6334. </td>
  6335. <td>
  6336. </td>
  6337. </tr>
  6338. </tbody>
  6339. </table>
  6340. <h3 id="external-secrets.io/v1.IBMAuthContainerAuth">IBMAuthContainerAuth
  6341. </h3>
  6342. <p>
  6343. (<em>Appears on:</em>
  6344. <a href="#external-secrets.io/v1.IBMAuth">IBMAuth</a>)
  6345. </p>
  6346. <p>
  6347. <p>IBM Container-based auth with IAM Trusted Profile.</p>
  6348. </p>
  6349. <table>
  6350. <thead>
  6351. <tr>
  6352. <th>Field</th>
  6353. <th>Description</th>
  6354. </tr>
  6355. </thead>
  6356. <tbody>
  6357. <tr>
  6358. <td>
  6359. <code>profile</code></br>
  6360. <em>
  6361. string
  6362. </em>
  6363. </td>
  6364. <td>
  6365. <p>the IBM Trusted Profile</p>
  6366. </td>
  6367. </tr>
  6368. <tr>
  6369. <td>
  6370. <code>tokenLocation</code></br>
  6371. <em>
  6372. string
  6373. </em>
  6374. </td>
  6375. <td>
  6376. <p>Location the token is mounted on the pod</p>
  6377. </td>
  6378. </tr>
  6379. <tr>
  6380. <td>
  6381. <code>iamEndpoint</code></br>
  6382. <em>
  6383. string
  6384. </em>
  6385. </td>
  6386. <td>
  6387. </td>
  6388. </tr>
  6389. </tbody>
  6390. </table>
  6391. <h3 id="external-secrets.io/v1.IBMAuthSecretRef">IBMAuthSecretRef
  6392. </h3>
  6393. <p>
  6394. (<em>Appears on:</em>
  6395. <a href="#external-secrets.io/v1.IBMAuth">IBMAuth</a>)
  6396. </p>
  6397. <p>
  6398. </p>
  6399. <table>
  6400. <thead>
  6401. <tr>
  6402. <th>Field</th>
  6403. <th>Description</th>
  6404. </tr>
  6405. </thead>
  6406. <tbody>
  6407. <tr>
  6408. <td>
  6409. <code>secretApiKeySecretRef</code></br>
  6410. <em>
  6411. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  6412. External Secrets meta/v1.SecretKeySelector
  6413. </a>
  6414. </em>
  6415. </td>
  6416. <td>
  6417. <p>The SecretAccessKey is used for authentication</p>
  6418. </td>
  6419. </tr>
  6420. </tbody>
  6421. </table>
  6422. <h3 id="external-secrets.io/v1.IBMProvider">IBMProvider
  6423. </h3>
  6424. <p>
  6425. (<em>Appears on:</em>
  6426. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  6427. </p>
  6428. <p>
  6429. <p>Configures an store to sync secrets using a IBM Cloud Secrets Manager
  6430. backend.</p>
  6431. </p>
  6432. <table>
  6433. <thead>
  6434. <tr>
  6435. <th>Field</th>
  6436. <th>Description</th>
  6437. </tr>
  6438. </thead>
  6439. <tbody>
  6440. <tr>
  6441. <td>
  6442. <code>auth</code></br>
  6443. <em>
  6444. <a href="#external-secrets.io/v1.IBMAuth">
  6445. IBMAuth
  6446. </a>
  6447. </em>
  6448. </td>
  6449. <td>
  6450. <p>Auth configures how secret-manager authenticates with the IBM secrets manager.</p>
  6451. </td>
  6452. </tr>
  6453. <tr>
  6454. <td>
  6455. <code>serviceUrl</code></br>
  6456. <em>
  6457. string
  6458. </em>
  6459. </td>
  6460. <td>
  6461. <p>ServiceURL is the Endpoint URL that is specific to the Secrets Manager service instance</p>
  6462. </td>
  6463. </tr>
  6464. </tbody>
  6465. </table>
  6466. <h3 id="external-secrets.io/v1.InfisicalAuth">InfisicalAuth
  6467. </h3>
  6468. <p>
  6469. (<em>Appears on:</em>
  6470. <a href="#external-secrets.io/v1.InfisicalProvider">InfisicalProvider</a>)
  6471. </p>
  6472. <p>
  6473. </p>
  6474. <table>
  6475. <thead>
  6476. <tr>
  6477. <th>Field</th>
  6478. <th>Description</th>
  6479. </tr>
  6480. </thead>
  6481. <tbody>
  6482. <tr>
  6483. <td>
  6484. <code>universalAuthCredentials</code></br>
  6485. <em>
  6486. <a href="#external-secrets.io/v1.UniversalAuthCredentials">
  6487. UniversalAuthCredentials
  6488. </a>
  6489. </em>
  6490. </td>
  6491. <td>
  6492. <em>(Optional)</em>
  6493. </td>
  6494. </tr>
  6495. </tbody>
  6496. </table>
  6497. <h3 id="external-secrets.io/v1.InfisicalProvider">InfisicalProvider
  6498. </h3>
  6499. <p>
  6500. (<em>Appears on:</em>
  6501. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  6502. </p>
  6503. <p>
  6504. <p>InfisicalProvider configures a store to sync secrets using the Infisical provider.</p>
  6505. </p>
  6506. <table>
  6507. <thead>
  6508. <tr>
  6509. <th>Field</th>
  6510. <th>Description</th>
  6511. </tr>
  6512. </thead>
  6513. <tbody>
  6514. <tr>
  6515. <td>
  6516. <code>auth</code></br>
  6517. <em>
  6518. <a href="#external-secrets.io/v1.InfisicalAuth">
  6519. InfisicalAuth
  6520. </a>
  6521. </em>
  6522. </td>
  6523. <td>
  6524. <p>Auth configures how the Operator authenticates with the Infisical API</p>
  6525. </td>
  6526. </tr>
  6527. <tr>
  6528. <td>
  6529. <code>secretsScope</code></br>
  6530. <em>
  6531. <a href="#external-secrets.io/v1.MachineIdentityScopeInWorkspace">
  6532. MachineIdentityScopeInWorkspace
  6533. </a>
  6534. </em>
  6535. </td>
  6536. <td>
  6537. <p>SecretsScope defines the scope of the secrets within the workspace</p>
  6538. </td>
  6539. </tr>
  6540. <tr>
  6541. <td>
  6542. <code>hostAPI</code></br>
  6543. <em>
  6544. string
  6545. </em>
  6546. </td>
  6547. <td>
  6548. <em>(Optional)</em>
  6549. <p>HostAPI specifies the base URL of the Infisical API. If not provided, it defaults to &ldquo;<a href="https://app.infisical.com/api&quot;">https://app.infisical.com/api&rdquo;</a>.</p>
  6550. </td>
  6551. </tr>
  6552. </tbody>
  6553. </table>
  6554. <h3 id="external-secrets.io/v1.IntegrationInfo">IntegrationInfo
  6555. </h3>
  6556. <p>
  6557. (<em>Appears on:</em>
  6558. <a href="#external-secrets.io/v1.OnePasswordSDKProvider">OnePasswordSDKProvider</a>)
  6559. </p>
  6560. <p>
  6561. <p>IntegrationInfo specifies the name and version of the integration built using the 1Password Go SDK.</p>
  6562. </p>
  6563. <table>
  6564. <thead>
  6565. <tr>
  6566. <th>Field</th>
  6567. <th>Description</th>
  6568. </tr>
  6569. </thead>
  6570. <tbody>
  6571. <tr>
  6572. <td>
  6573. <code>name</code></br>
  6574. <em>
  6575. string
  6576. </em>
  6577. </td>
  6578. <td>
  6579. <p>Name defaults to &ldquo;1Password SDK&rdquo;.</p>
  6580. </td>
  6581. </tr>
  6582. <tr>
  6583. <td>
  6584. <code>version</code></br>
  6585. <em>
  6586. string
  6587. </em>
  6588. </td>
  6589. <td>
  6590. <p>Version defaults to &ldquo;v1.0.0&rdquo;.</p>
  6591. </td>
  6592. </tr>
  6593. </tbody>
  6594. </table>
  6595. <h3 id="external-secrets.io/v1.KeeperSecurityProvider">KeeperSecurityProvider
  6596. </h3>
  6597. <p>
  6598. (<em>Appears on:</em>
  6599. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  6600. </p>
  6601. <p>
  6602. <p>KeeperSecurityProvider Configures a store to sync secrets using Keeper Security.</p>
  6603. </p>
  6604. <table>
  6605. <thead>
  6606. <tr>
  6607. <th>Field</th>
  6608. <th>Description</th>
  6609. </tr>
  6610. </thead>
  6611. <tbody>
  6612. <tr>
  6613. <td>
  6614. <code>authRef</code></br>
  6615. <em>
  6616. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  6617. External Secrets meta/v1.SecretKeySelector
  6618. </a>
  6619. </em>
  6620. </td>
  6621. <td>
  6622. </td>
  6623. </tr>
  6624. <tr>
  6625. <td>
  6626. <code>folderID</code></br>
  6627. <em>
  6628. string
  6629. </em>
  6630. </td>
  6631. <td>
  6632. </td>
  6633. </tr>
  6634. </tbody>
  6635. </table>
  6636. <h3 id="external-secrets.io/v1.KubernetesAuth">KubernetesAuth
  6637. </h3>
  6638. <p>
  6639. (<em>Appears on:</em>
  6640. <a href="#external-secrets.io/v1.KubernetesProvider">KubernetesProvider</a>)
  6641. </p>
  6642. <p>
  6643. </p>
  6644. <table>
  6645. <thead>
  6646. <tr>
  6647. <th>Field</th>
  6648. <th>Description</th>
  6649. </tr>
  6650. </thead>
  6651. <tbody>
  6652. <tr>
  6653. <td>
  6654. <code>cert</code></br>
  6655. <em>
  6656. <a href="#external-secrets.io/v1.CertAuth">
  6657. CertAuth
  6658. </a>
  6659. </em>
  6660. </td>
  6661. <td>
  6662. <em>(Optional)</em>
  6663. <p>has both clientCert and clientKey as secretKeySelector</p>
  6664. </td>
  6665. </tr>
  6666. <tr>
  6667. <td>
  6668. <code>token</code></br>
  6669. <em>
  6670. <a href="#external-secrets.io/v1.TokenAuth">
  6671. TokenAuth
  6672. </a>
  6673. </em>
  6674. </td>
  6675. <td>
  6676. <em>(Optional)</em>
  6677. <p>use static token to authenticate with</p>
  6678. </td>
  6679. </tr>
  6680. <tr>
  6681. <td>
  6682. <code>serviceAccount</code></br>
  6683. <em>
  6684. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  6685. External Secrets meta/v1.ServiceAccountSelector
  6686. </a>
  6687. </em>
  6688. </td>
  6689. <td>
  6690. <em>(Optional)</em>
  6691. <p>points to a service account that should be used for authentication</p>
  6692. </td>
  6693. </tr>
  6694. </tbody>
  6695. </table>
  6696. <h3 id="external-secrets.io/v1.KubernetesProvider">KubernetesProvider
  6697. </h3>
  6698. <p>
  6699. (<em>Appears on:</em>
  6700. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  6701. </p>
  6702. <p>
  6703. <p>Configures a store to sync secrets with a Kubernetes instance.</p>
  6704. </p>
  6705. <table>
  6706. <thead>
  6707. <tr>
  6708. <th>Field</th>
  6709. <th>Description</th>
  6710. </tr>
  6711. </thead>
  6712. <tbody>
  6713. <tr>
  6714. <td>
  6715. <code>server</code></br>
  6716. <em>
  6717. <a href="#external-secrets.io/v1.KubernetesServer">
  6718. KubernetesServer
  6719. </a>
  6720. </em>
  6721. </td>
  6722. <td>
  6723. <em>(Optional)</em>
  6724. <p>configures the Kubernetes server Address.</p>
  6725. </td>
  6726. </tr>
  6727. <tr>
  6728. <td>
  6729. <code>auth</code></br>
  6730. <em>
  6731. <a href="#external-secrets.io/v1.KubernetesAuth">
  6732. KubernetesAuth
  6733. </a>
  6734. </em>
  6735. </td>
  6736. <td>
  6737. <em>(Optional)</em>
  6738. <p>Auth configures how secret-manager authenticates with a Kubernetes instance.</p>
  6739. </td>
  6740. </tr>
  6741. <tr>
  6742. <td>
  6743. <code>authRef</code></br>
  6744. <em>
  6745. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  6746. External Secrets meta/v1.SecretKeySelector
  6747. </a>
  6748. </em>
  6749. </td>
  6750. <td>
  6751. <em>(Optional)</em>
  6752. <p>A reference to a secret that contains the auth information.</p>
  6753. </td>
  6754. </tr>
  6755. <tr>
  6756. <td>
  6757. <code>remoteNamespace</code></br>
  6758. <em>
  6759. string
  6760. </em>
  6761. </td>
  6762. <td>
  6763. <em>(Optional)</em>
  6764. <p>Remote namespace to fetch the secrets from</p>
  6765. </td>
  6766. </tr>
  6767. </tbody>
  6768. </table>
  6769. <h3 id="external-secrets.io/v1.KubernetesServer">KubernetesServer
  6770. </h3>
  6771. <p>
  6772. (<em>Appears on:</em>
  6773. <a href="#external-secrets.io/v1.KubernetesProvider">KubernetesProvider</a>)
  6774. </p>
  6775. <p>
  6776. </p>
  6777. <table>
  6778. <thead>
  6779. <tr>
  6780. <th>Field</th>
  6781. <th>Description</th>
  6782. </tr>
  6783. </thead>
  6784. <tbody>
  6785. <tr>
  6786. <td>
  6787. <code>url</code></br>
  6788. <em>
  6789. string
  6790. </em>
  6791. </td>
  6792. <td>
  6793. <em>(Optional)</em>
  6794. <p>configures the Kubernetes server Address.</p>
  6795. </td>
  6796. </tr>
  6797. <tr>
  6798. <td>
  6799. <code>caBundle</code></br>
  6800. <em>
  6801. []byte
  6802. </em>
  6803. </td>
  6804. <td>
  6805. <em>(Optional)</em>
  6806. <p>CABundle is a base64-encoded CA certificate</p>
  6807. </td>
  6808. </tr>
  6809. <tr>
  6810. <td>
  6811. <code>caProvider</code></br>
  6812. <em>
  6813. <a href="#external-secrets.io/v1.CAProvider">
  6814. CAProvider
  6815. </a>
  6816. </em>
  6817. </td>
  6818. <td>
  6819. <em>(Optional)</em>
  6820. <p>see: <a href="https://external-secrets.io/v0.4.1/spec/#external-secrets.io/v1alpha1.CAProvider">https://external-secrets.io/v0.4.1/spec/#external-secrets.io/v1alpha1.CAProvider</a></p>
  6821. </td>
  6822. </tr>
  6823. </tbody>
  6824. </table>
  6825. <h3 id="external-secrets.io/v1.MachineIdentityScopeInWorkspace">MachineIdentityScopeInWorkspace
  6826. </h3>
  6827. <p>
  6828. (<em>Appears on:</em>
  6829. <a href="#external-secrets.io/v1.InfisicalProvider">InfisicalProvider</a>)
  6830. </p>
  6831. <p>
  6832. </p>
  6833. <table>
  6834. <thead>
  6835. <tr>
  6836. <th>Field</th>
  6837. <th>Description</th>
  6838. </tr>
  6839. </thead>
  6840. <tbody>
  6841. <tr>
  6842. <td>
  6843. <code>secretsPath</code></br>
  6844. <em>
  6845. string
  6846. </em>
  6847. </td>
  6848. <td>
  6849. <em>(Optional)</em>
  6850. <p>SecretsPath specifies the path to the secrets within the workspace. Defaults to &ldquo;/&rdquo; if not provided.</p>
  6851. </td>
  6852. </tr>
  6853. <tr>
  6854. <td>
  6855. <code>recursive</code></br>
  6856. <em>
  6857. bool
  6858. </em>
  6859. </td>
  6860. <td>
  6861. <em>(Optional)</em>
  6862. <p>Recursive indicates whether the secrets should be fetched recursively. Defaults to false if not provided.</p>
  6863. </td>
  6864. </tr>
  6865. <tr>
  6866. <td>
  6867. <code>environmentSlug</code></br>
  6868. <em>
  6869. string
  6870. </em>
  6871. </td>
  6872. <td>
  6873. <p>EnvironmentSlug is the required slug identifier for the environment.</p>
  6874. </td>
  6875. </tr>
  6876. <tr>
  6877. <td>
  6878. <code>projectSlug</code></br>
  6879. <em>
  6880. string
  6881. </em>
  6882. </td>
  6883. <td>
  6884. <p>ProjectSlug is the required slug identifier for the project.</p>
  6885. </td>
  6886. </tr>
  6887. <tr>
  6888. <td>
  6889. <code>expandSecretReferences</code></br>
  6890. <em>
  6891. bool
  6892. </em>
  6893. </td>
  6894. <td>
  6895. <em>(Optional)</em>
  6896. <p>ExpandSecretReferences indicates whether secret references should be expanded. Defaults to true if not provided.</p>
  6897. </td>
  6898. </tr>
  6899. </tbody>
  6900. </table>
  6901. <h3 id="external-secrets.io/v1.MaintenanceStatus">MaintenanceStatus
  6902. (<code>bool</code> alias)</p></h3>
  6903. <p>
  6904. </p>
  6905. <table>
  6906. <thead>
  6907. <tr>
  6908. <th>Value</th>
  6909. <th>Description</th>
  6910. </tr>
  6911. </thead>
  6912. <tbody><tr><td><p>true</p></td>
  6913. <td></td>
  6914. </tr><tr><td><p>false</p></td>
  6915. <td></td>
  6916. </tr></tbody>
  6917. </table>
  6918. <h3 id="external-secrets.io/v1.NTLMProtocol">NTLMProtocol
  6919. </h3>
  6920. <p>
  6921. (<em>Appears on:</em>
  6922. <a href="#external-secrets.io/v1.AuthorizationProtocol">AuthorizationProtocol</a>)
  6923. </p>
  6924. <p>
  6925. <p>NTLMProtocol contains the NTLM-specific configuration.</p>
  6926. </p>
  6927. <table>
  6928. <thead>
  6929. <tr>
  6930. <th>Field</th>
  6931. <th>Description</th>
  6932. </tr>
  6933. </thead>
  6934. <tbody>
  6935. <tr>
  6936. <td>
  6937. <code>usernameSecret</code></br>
  6938. <em>
  6939. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  6940. External Secrets meta/v1.SecretKeySelector
  6941. </a>
  6942. </em>
  6943. </td>
  6944. <td>
  6945. </td>
  6946. </tr>
  6947. <tr>
  6948. <td>
  6949. <code>passwordSecret</code></br>
  6950. <em>
  6951. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  6952. External Secrets meta/v1.SecretKeySelector
  6953. </a>
  6954. </em>
  6955. </td>
  6956. <td>
  6957. </td>
  6958. </tr>
  6959. </tbody>
  6960. </table>
  6961. <h3 id="external-secrets.io/v1.NoSecretError">NoSecretError
  6962. </h3>
  6963. <p>
  6964. <p>NoSecretError shall be returned when a GetSecret can not find the
  6965. desired secret. This is used for deletionPolicy.</p>
  6966. </p>
  6967. <h3 id="external-secrets.io/v1.NotModifiedError">NotModifiedError
  6968. </h3>
  6969. <p>
  6970. <p>NotModifiedError to signal that the webhook received no changes,
  6971. and it should just return without doing anything.</p>
  6972. </p>
  6973. <h3 id="external-secrets.io/v1.OnboardbaseAuthSecretRef">OnboardbaseAuthSecretRef
  6974. </h3>
  6975. <p>
  6976. (<em>Appears on:</em>
  6977. <a href="#external-secrets.io/v1.OnboardbaseProvider">OnboardbaseProvider</a>)
  6978. </p>
  6979. <p>
  6980. <p>OnboardbaseAuthSecretRef holds secret references for onboardbase API Key credentials.</p>
  6981. </p>
  6982. <table>
  6983. <thead>
  6984. <tr>
  6985. <th>Field</th>
  6986. <th>Description</th>
  6987. </tr>
  6988. </thead>
  6989. <tbody>
  6990. <tr>
  6991. <td>
  6992. <code>apiKeyRef</code></br>
  6993. <em>
  6994. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  6995. External Secrets meta/v1.SecretKeySelector
  6996. </a>
  6997. </em>
  6998. </td>
  6999. <td>
  7000. <p>OnboardbaseAPIKey is the APIKey generated by an admin account.
  7001. It is used to recognize and authorize access to a project and environment within onboardbase</p>
  7002. </td>
  7003. </tr>
  7004. <tr>
  7005. <td>
  7006. <code>passcodeRef</code></br>
  7007. <em>
  7008. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7009. External Secrets meta/v1.SecretKeySelector
  7010. </a>
  7011. </em>
  7012. </td>
  7013. <td>
  7014. <p>OnboardbasePasscode is the passcode attached to the API Key</p>
  7015. </td>
  7016. </tr>
  7017. </tbody>
  7018. </table>
  7019. <h3 id="external-secrets.io/v1.OnboardbaseProvider">OnboardbaseProvider
  7020. </h3>
  7021. <p>
  7022. (<em>Appears on:</em>
  7023. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  7024. </p>
  7025. <p>
  7026. <p>OnboardbaseProvider configures a store to sync secrets using the Onboardbase provider.
  7027. Project and Config are required if not using a Service Token.</p>
  7028. </p>
  7029. <table>
  7030. <thead>
  7031. <tr>
  7032. <th>Field</th>
  7033. <th>Description</th>
  7034. </tr>
  7035. </thead>
  7036. <tbody>
  7037. <tr>
  7038. <td>
  7039. <code>auth</code></br>
  7040. <em>
  7041. <a href="#external-secrets.io/v1.OnboardbaseAuthSecretRef">
  7042. OnboardbaseAuthSecretRef
  7043. </a>
  7044. </em>
  7045. </td>
  7046. <td>
  7047. <p>Auth configures how the Operator authenticates with the Onboardbase API</p>
  7048. </td>
  7049. </tr>
  7050. <tr>
  7051. <td>
  7052. <code>apiHost</code></br>
  7053. <em>
  7054. string
  7055. </em>
  7056. </td>
  7057. <td>
  7058. <p>APIHost use this to configure the host url for the API for selfhosted installation, default is <a href="https://public.onboardbase.com/api/v1/">https://public.onboardbase.com/api/v1/</a></p>
  7059. </td>
  7060. </tr>
  7061. <tr>
  7062. <td>
  7063. <code>project</code></br>
  7064. <em>
  7065. string
  7066. </em>
  7067. </td>
  7068. <td>
  7069. <p>Project is an onboardbase project that the secrets should be pulled from</p>
  7070. </td>
  7071. </tr>
  7072. <tr>
  7073. <td>
  7074. <code>environment</code></br>
  7075. <em>
  7076. string
  7077. </em>
  7078. </td>
  7079. <td>
  7080. <p>Environment is the name of an environmnent within a project to pull the secrets from</p>
  7081. </td>
  7082. </tr>
  7083. </tbody>
  7084. </table>
  7085. <h3 id="external-secrets.io/v1.OnePasswordAuth">OnePasswordAuth
  7086. </h3>
  7087. <p>
  7088. (<em>Appears on:</em>
  7089. <a href="#external-secrets.io/v1.OnePasswordProvider">OnePasswordProvider</a>)
  7090. </p>
  7091. <p>
  7092. <p>OnePasswordAuth contains a secretRef for credentials.</p>
  7093. </p>
  7094. <table>
  7095. <thead>
  7096. <tr>
  7097. <th>Field</th>
  7098. <th>Description</th>
  7099. </tr>
  7100. </thead>
  7101. <tbody>
  7102. <tr>
  7103. <td>
  7104. <code>secretRef</code></br>
  7105. <em>
  7106. <a href="#external-secrets.io/v1.OnePasswordAuthSecretRef">
  7107. OnePasswordAuthSecretRef
  7108. </a>
  7109. </em>
  7110. </td>
  7111. <td>
  7112. </td>
  7113. </tr>
  7114. </tbody>
  7115. </table>
  7116. <h3 id="external-secrets.io/v1.OnePasswordAuthSecretRef">OnePasswordAuthSecretRef
  7117. </h3>
  7118. <p>
  7119. (<em>Appears on:</em>
  7120. <a href="#external-secrets.io/v1.OnePasswordAuth">OnePasswordAuth</a>)
  7121. </p>
  7122. <p>
  7123. <p>OnePasswordAuthSecretRef holds secret references for 1Password credentials.</p>
  7124. </p>
  7125. <table>
  7126. <thead>
  7127. <tr>
  7128. <th>Field</th>
  7129. <th>Description</th>
  7130. </tr>
  7131. </thead>
  7132. <tbody>
  7133. <tr>
  7134. <td>
  7135. <code>connectTokenSecretRef</code></br>
  7136. <em>
  7137. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7138. External Secrets meta/v1.SecretKeySelector
  7139. </a>
  7140. </em>
  7141. </td>
  7142. <td>
  7143. <p>The ConnectToken is used for authentication to a 1Password Connect Server.</p>
  7144. </td>
  7145. </tr>
  7146. </tbody>
  7147. </table>
  7148. <h3 id="external-secrets.io/v1.OnePasswordProvider">OnePasswordProvider
  7149. </h3>
  7150. <p>
  7151. (<em>Appears on:</em>
  7152. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  7153. </p>
  7154. <p>
  7155. <p>OnePasswordProvider configures a store to sync secrets using the 1Password Secret Manager provider.</p>
  7156. </p>
  7157. <table>
  7158. <thead>
  7159. <tr>
  7160. <th>Field</th>
  7161. <th>Description</th>
  7162. </tr>
  7163. </thead>
  7164. <tbody>
  7165. <tr>
  7166. <td>
  7167. <code>auth</code></br>
  7168. <em>
  7169. <a href="#external-secrets.io/v1.OnePasswordAuth">
  7170. OnePasswordAuth
  7171. </a>
  7172. </em>
  7173. </td>
  7174. <td>
  7175. <p>Auth defines the information necessary to authenticate against OnePassword Connect Server</p>
  7176. </td>
  7177. </tr>
  7178. <tr>
  7179. <td>
  7180. <code>connectHost</code></br>
  7181. <em>
  7182. string
  7183. </em>
  7184. </td>
  7185. <td>
  7186. <p>ConnectHost defines the OnePassword Connect Server to connect to</p>
  7187. </td>
  7188. </tr>
  7189. <tr>
  7190. <td>
  7191. <code>vaults</code></br>
  7192. <em>
  7193. map[string]int
  7194. </em>
  7195. </td>
  7196. <td>
  7197. <p>Vaults defines which OnePassword vaults to search in which order</p>
  7198. </td>
  7199. </tr>
  7200. </tbody>
  7201. </table>
  7202. <h3 id="external-secrets.io/v1.OnePasswordSDKAuth">OnePasswordSDKAuth
  7203. </h3>
  7204. <p>
  7205. (<em>Appears on:</em>
  7206. <a href="#external-secrets.io/v1.OnePasswordSDKProvider">OnePasswordSDKProvider</a>)
  7207. </p>
  7208. <p>
  7209. <p>OnePasswordSDKAuth contains a secretRef for the service account token.</p>
  7210. </p>
  7211. <table>
  7212. <thead>
  7213. <tr>
  7214. <th>Field</th>
  7215. <th>Description</th>
  7216. </tr>
  7217. </thead>
  7218. <tbody>
  7219. <tr>
  7220. <td>
  7221. <code>serviceAccountSecretRef</code></br>
  7222. <em>
  7223. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7224. External Secrets meta/v1.SecretKeySelector
  7225. </a>
  7226. </em>
  7227. </td>
  7228. <td>
  7229. <p>ServiceAccountSecretRef points to the secret containing the token to access 1Password vault.</p>
  7230. </td>
  7231. </tr>
  7232. </tbody>
  7233. </table>
  7234. <h3 id="external-secrets.io/v1.OnePasswordSDKProvider">OnePasswordSDKProvider
  7235. </h3>
  7236. <p>
  7237. (<em>Appears on:</em>
  7238. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  7239. </p>
  7240. <p>
  7241. <p>OnePasswordSDKProvider configures a store to sync secrets using the 1Password sdk.</p>
  7242. </p>
  7243. <table>
  7244. <thead>
  7245. <tr>
  7246. <th>Field</th>
  7247. <th>Description</th>
  7248. </tr>
  7249. </thead>
  7250. <tbody>
  7251. <tr>
  7252. <td>
  7253. <code>vault</code></br>
  7254. <em>
  7255. string
  7256. </em>
  7257. </td>
  7258. <td>
  7259. <p>Vault defines the vault&rsquo;s name to access. Do NOT add op:// prefix. This will be done automatically.</p>
  7260. </td>
  7261. </tr>
  7262. <tr>
  7263. <td>
  7264. <code>integrationInfo</code></br>
  7265. <em>
  7266. <a href="#external-secrets.io/v1.IntegrationInfo">
  7267. IntegrationInfo
  7268. </a>
  7269. </em>
  7270. </td>
  7271. <td>
  7272. <em>(Optional)</em>
  7273. <p>IntegrationInfo specifies the name and version of the integration built using the 1Password Go SDK.
  7274. If you don&rsquo;t know which name and version to use, use <code>DefaultIntegrationName</code> and <code>DefaultIntegrationVersion</code>, respectively.</p>
  7275. </td>
  7276. </tr>
  7277. <tr>
  7278. <td>
  7279. <code>auth</code></br>
  7280. <em>
  7281. <a href="#external-secrets.io/v1.OnePasswordSDKAuth">
  7282. OnePasswordSDKAuth
  7283. </a>
  7284. </em>
  7285. </td>
  7286. <td>
  7287. <p>Auth defines the information necessary to authenticate against OnePassword API.</p>
  7288. </td>
  7289. </tr>
  7290. </tbody>
  7291. </table>
  7292. <h3 id="external-secrets.io/v1.OracleAuth">OracleAuth
  7293. </h3>
  7294. <p>
  7295. (<em>Appears on:</em>
  7296. <a href="#external-secrets.io/v1.OracleProvider">OracleProvider</a>)
  7297. </p>
  7298. <p>
  7299. </p>
  7300. <table>
  7301. <thead>
  7302. <tr>
  7303. <th>Field</th>
  7304. <th>Description</th>
  7305. </tr>
  7306. </thead>
  7307. <tbody>
  7308. <tr>
  7309. <td>
  7310. <code>tenancy</code></br>
  7311. <em>
  7312. string
  7313. </em>
  7314. </td>
  7315. <td>
  7316. <p>Tenancy is the tenancy OCID where user is located.</p>
  7317. </td>
  7318. </tr>
  7319. <tr>
  7320. <td>
  7321. <code>user</code></br>
  7322. <em>
  7323. string
  7324. </em>
  7325. </td>
  7326. <td>
  7327. <p>User is an access OCID specific to the account.</p>
  7328. </td>
  7329. </tr>
  7330. <tr>
  7331. <td>
  7332. <code>secretRef</code></br>
  7333. <em>
  7334. <a href="#external-secrets.io/v1.OracleSecretRef">
  7335. OracleSecretRef
  7336. </a>
  7337. </em>
  7338. </td>
  7339. <td>
  7340. <p>SecretRef to pass through sensitive information.</p>
  7341. </td>
  7342. </tr>
  7343. </tbody>
  7344. </table>
  7345. <h3 id="external-secrets.io/v1.OraclePrincipalType">OraclePrincipalType
  7346. (<code>string</code> alias)</p></h3>
  7347. <p>
  7348. (<em>Appears on:</em>
  7349. <a href="#external-secrets.io/v1.OracleProvider">OracleProvider</a>)
  7350. </p>
  7351. <p>
  7352. </p>
  7353. <table>
  7354. <thead>
  7355. <tr>
  7356. <th>Value</th>
  7357. <th>Description</th>
  7358. </tr>
  7359. </thead>
  7360. <tbody><tr><td><p>&#34;InstancePrincipal&#34;</p></td>
  7361. <td><p>InstancePrincipal represents a instance principal.</p>
  7362. </td>
  7363. </tr><tr><td><p>&#34;UserPrincipal&#34;</p></td>
  7364. <td><p>UserPrincipal represents a user principal.</p>
  7365. </td>
  7366. </tr><tr><td><p>&#34;Workload&#34;</p></td>
  7367. <td><p>WorkloadPrincipal represents a workload principal.</p>
  7368. </td>
  7369. </tr></tbody>
  7370. </table>
  7371. <h3 id="external-secrets.io/v1.OracleProvider">OracleProvider
  7372. </h3>
  7373. <p>
  7374. (<em>Appears on:</em>
  7375. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  7376. </p>
  7377. <p>
  7378. <p>Configures an store to sync secrets using a Oracle Vault
  7379. backend.</p>
  7380. </p>
  7381. <table>
  7382. <thead>
  7383. <tr>
  7384. <th>Field</th>
  7385. <th>Description</th>
  7386. </tr>
  7387. </thead>
  7388. <tbody>
  7389. <tr>
  7390. <td>
  7391. <code>region</code></br>
  7392. <em>
  7393. string
  7394. </em>
  7395. </td>
  7396. <td>
  7397. <p>Region is the region where vault is located.</p>
  7398. </td>
  7399. </tr>
  7400. <tr>
  7401. <td>
  7402. <code>vault</code></br>
  7403. <em>
  7404. string
  7405. </em>
  7406. </td>
  7407. <td>
  7408. <p>Vault is the vault&rsquo;s OCID of the specific vault where secret is located.</p>
  7409. </td>
  7410. </tr>
  7411. <tr>
  7412. <td>
  7413. <code>compartment</code></br>
  7414. <em>
  7415. string
  7416. </em>
  7417. </td>
  7418. <td>
  7419. <em>(Optional)</em>
  7420. <p>Compartment is the vault compartment OCID.
  7421. Required for PushSecret</p>
  7422. </td>
  7423. </tr>
  7424. <tr>
  7425. <td>
  7426. <code>encryptionKey</code></br>
  7427. <em>
  7428. string
  7429. </em>
  7430. </td>
  7431. <td>
  7432. <em>(Optional)</em>
  7433. <p>EncryptionKey is the OCID of the encryption key within the vault.
  7434. Required for PushSecret</p>
  7435. </td>
  7436. </tr>
  7437. <tr>
  7438. <td>
  7439. <code>principalType</code></br>
  7440. <em>
  7441. <a href="#external-secrets.io/v1.OraclePrincipalType">
  7442. OraclePrincipalType
  7443. </a>
  7444. </em>
  7445. </td>
  7446. <td>
  7447. <em>(Optional)</em>
  7448. <p>The type of principal to use for authentication. If left blank, the Auth struct will
  7449. determine the principal type. This optional field must be specified if using
  7450. workload identity.</p>
  7451. </td>
  7452. </tr>
  7453. <tr>
  7454. <td>
  7455. <code>auth</code></br>
  7456. <em>
  7457. <a href="#external-secrets.io/v1.OracleAuth">
  7458. OracleAuth
  7459. </a>
  7460. </em>
  7461. </td>
  7462. <td>
  7463. <em>(Optional)</em>
  7464. <p>Auth configures how secret-manager authenticates with the Oracle Vault.
  7465. If empty, use the instance principal, otherwise the user credentials specified in Auth.</p>
  7466. </td>
  7467. </tr>
  7468. <tr>
  7469. <td>
  7470. <code>serviceAccountRef</code></br>
  7471. <em>
  7472. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  7473. External Secrets meta/v1.ServiceAccountSelector
  7474. </a>
  7475. </em>
  7476. </td>
  7477. <td>
  7478. <em>(Optional)</em>
  7479. <p>ServiceAccountRef specified the service account
  7480. that should be used when authenticating with WorkloadIdentity.</p>
  7481. </td>
  7482. </tr>
  7483. </tbody>
  7484. </table>
  7485. <h3 id="external-secrets.io/v1.OracleSecretRef">OracleSecretRef
  7486. </h3>
  7487. <p>
  7488. (<em>Appears on:</em>
  7489. <a href="#external-secrets.io/v1.OracleAuth">OracleAuth</a>)
  7490. </p>
  7491. <p>
  7492. </p>
  7493. <table>
  7494. <thead>
  7495. <tr>
  7496. <th>Field</th>
  7497. <th>Description</th>
  7498. </tr>
  7499. </thead>
  7500. <tbody>
  7501. <tr>
  7502. <td>
  7503. <code>privatekey</code></br>
  7504. <em>
  7505. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7506. External Secrets meta/v1.SecretKeySelector
  7507. </a>
  7508. </em>
  7509. </td>
  7510. <td>
  7511. <p>PrivateKey is the user&rsquo;s API Signing Key in PEM format, used for authentication.</p>
  7512. </td>
  7513. </tr>
  7514. <tr>
  7515. <td>
  7516. <code>fingerprint</code></br>
  7517. <em>
  7518. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7519. External Secrets meta/v1.SecretKeySelector
  7520. </a>
  7521. </em>
  7522. </td>
  7523. <td>
  7524. <p>Fingerprint is the fingerprint of the API private key.</p>
  7525. </td>
  7526. </tr>
  7527. </tbody>
  7528. </table>
  7529. <h3 id="external-secrets.io/v1.PassboltAuth">PassboltAuth
  7530. </h3>
  7531. <p>
  7532. (<em>Appears on:</em>
  7533. <a href="#external-secrets.io/v1.PassboltProvider">PassboltProvider</a>)
  7534. </p>
  7535. <p>
  7536. <p>Passbolt contains a secretRef for the passbolt credentials.</p>
  7537. </p>
  7538. <table>
  7539. <thead>
  7540. <tr>
  7541. <th>Field</th>
  7542. <th>Description</th>
  7543. </tr>
  7544. </thead>
  7545. <tbody>
  7546. <tr>
  7547. <td>
  7548. <code>passwordSecretRef</code></br>
  7549. <em>
  7550. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7551. External Secrets meta/v1.SecretKeySelector
  7552. </a>
  7553. </em>
  7554. </td>
  7555. <td>
  7556. </td>
  7557. </tr>
  7558. <tr>
  7559. <td>
  7560. <code>privateKeySecretRef</code></br>
  7561. <em>
  7562. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7563. External Secrets meta/v1.SecretKeySelector
  7564. </a>
  7565. </em>
  7566. </td>
  7567. <td>
  7568. </td>
  7569. </tr>
  7570. </tbody>
  7571. </table>
  7572. <h3 id="external-secrets.io/v1.PassboltProvider">PassboltProvider
  7573. </h3>
  7574. <p>
  7575. (<em>Appears on:</em>
  7576. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  7577. </p>
  7578. <p>
  7579. </p>
  7580. <table>
  7581. <thead>
  7582. <tr>
  7583. <th>Field</th>
  7584. <th>Description</th>
  7585. </tr>
  7586. </thead>
  7587. <tbody>
  7588. <tr>
  7589. <td>
  7590. <code>auth</code></br>
  7591. <em>
  7592. <a href="#external-secrets.io/v1.PassboltAuth">
  7593. PassboltAuth
  7594. </a>
  7595. </em>
  7596. </td>
  7597. <td>
  7598. <p>Auth defines the information necessary to authenticate against Passbolt Server</p>
  7599. </td>
  7600. </tr>
  7601. <tr>
  7602. <td>
  7603. <code>host</code></br>
  7604. <em>
  7605. string
  7606. </em>
  7607. </td>
  7608. <td>
  7609. <p>Host defines the Passbolt Server to connect to</p>
  7610. </td>
  7611. </tr>
  7612. </tbody>
  7613. </table>
  7614. <h3 id="external-secrets.io/v1.PasswordDepotAuth">PasswordDepotAuth
  7615. </h3>
  7616. <p>
  7617. (<em>Appears on:</em>
  7618. <a href="#external-secrets.io/v1.PasswordDepotProvider">PasswordDepotProvider</a>)
  7619. </p>
  7620. <p>
  7621. </p>
  7622. <table>
  7623. <thead>
  7624. <tr>
  7625. <th>Field</th>
  7626. <th>Description</th>
  7627. </tr>
  7628. </thead>
  7629. <tbody>
  7630. <tr>
  7631. <td>
  7632. <code>secretRef</code></br>
  7633. <em>
  7634. <a href="#external-secrets.io/v1.PasswordDepotSecretRef">
  7635. PasswordDepotSecretRef
  7636. </a>
  7637. </em>
  7638. </td>
  7639. <td>
  7640. </td>
  7641. </tr>
  7642. </tbody>
  7643. </table>
  7644. <h3 id="external-secrets.io/v1.PasswordDepotProvider">PasswordDepotProvider
  7645. </h3>
  7646. <p>
  7647. (<em>Appears on:</em>
  7648. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  7649. </p>
  7650. <p>
  7651. <p>Configures a store to sync secrets with a Password Depot instance.</p>
  7652. </p>
  7653. <table>
  7654. <thead>
  7655. <tr>
  7656. <th>Field</th>
  7657. <th>Description</th>
  7658. </tr>
  7659. </thead>
  7660. <tbody>
  7661. <tr>
  7662. <td>
  7663. <code>host</code></br>
  7664. <em>
  7665. string
  7666. </em>
  7667. </td>
  7668. <td>
  7669. <p>URL configures the Password Depot instance URL.</p>
  7670. </td>
  7671. </tr>
  7672. <tr>
  7673. <td>
  7674. <code>database</code></br>
  7675. <em>
  7676. string
  7677. </em>
  7678. </td>
  7679. <td>
  7680. <p>Database to use as source</p>
  7681. </td>
  7682. </tr>
  7683. <tr>
  7684. <td>
  7685. <code>auth</code></br>
  7686. <em>
  7687. <a href="#external-secrets.io/v1.PasswordDepotAuth">
  7688. PasswordDepotAuth
  7689. </a>
  7690. </em>
  7691. </td>
  7692. <td>
  7693. <p>Auth configures how secret-manager authenticates with a Password Depot instance.</p>
  7694. </td>
  7695. </tr>
  7696. </tbody>
  7697. </table>
  7698. <h3 id="external-secrets.io/v1.PasswordDepotSecretRef">PasswordDepotSecretRef
  7699. </h3>
  7700. <p>
  7701. (<em>Appears on:</em>
  7702. <a href="#external-secrets.io/v1.PasswordDepotAuth">PasswordDepotAuth</a>)
  7703. </p>
  7704. <p>
  7705. </p>
  7706. <table>
  7707. <thead>
  7708. <tr>
  7709. <th>Field</th>
  7710. <th>Description</th>
  7711. </tr>
  7712. </thead>
  7713. <tbody>
  7714. <tr>
  7715. <td>
  7716. <code>credentials</code></br>
  7717. <em>
  7718. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7719. External Secrets meta/v1.SecretKeySelector
  7720. </a>
  7721. </em>
  7722. </td>
  7723. <td>
  7724. <em>(Optional)</em>
  7725. <p>Username / Password is used for authentication.</p>
  7726. </td>
  7727. </tr>
  7728. </tbody>
  7729. </table>
  7730. <h3 id="external-secrets.io/v1.PreviderAuth">PreviderAuth
  7731. </h3>
  7732. <p>
  7733. (<em>Appears on:</em>
  7734. <a href="#external-secrets.io/v1.PreviderProvider">PreviderProvider</a>)
  7735. </p>
  7736. <p>
  7737. <p>PreviderAuth contains a secretRef for credentials.</p>
  7738. </p>
  7739. <table>
  7740. <thead>
  7741. <tr>
  7742. <th>Field</th>
  7743. <th>Description</th>
  7744. </tr>
  7745. </thead>
  7746. <tbody>
  7747. <tr>
  7748. <td>
  7749. <code>secretRef</code></br>
  7750. <em>
  7751. <a href="#external-secrets.io/v1.PreviderAuthSecretRef">
  7752. PreviderAuthSecretRef
  7753. </a>
  7754. </em>
  7755. </td>
  7756. <td>
  7757. <em>(Optional)</em>
  7758. </td>
  7759. </tr>
  7760. </tbody>
  7761. </table>
  7762. <h3 id="external-secrets.io/v1.PreviderAuthSecretRef">PreviderAuthSecretRef
  7763. </h3>
  7764. <p>
  7765. (<em>Appears on:</em>
  7766. <a href="#external-secrets.io/v1.PreviderAuth">PreviderAuth</a>)
  7767. </p>
  7768. <p>
  7769. <p>PreviderAuthSecretRef holds secret references for Previder Vault credentials.</p>
  7770. </p>
  7771. <table>
  7772. <thead>
  7773. <tr>
  7774. <th>Field</th>
  7775. <th>Description</th>
  7776. </tr>
  7777. </thead>
  7778. <tbody>
  7779. <tr>
  7780. <td>
  7781. <code>accessToken</code></br>
  7782. <em>
  7783. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7784. External Secrets meta/v1.SecretKeySelector
  7785. </a>
  7786. </em>
  7787. </td>
  7788. <td>
  7789. <p>The AccessToken is used for authentication</p>
  7790. </td>
  7791. </tr>
  7792. </tbody>
  7793. </table>
  7794. <h3 id="external-secrets.io/v1.PreviderProvider">PreviderProvider
  7795. </h3>
  7796. <p>
  7797. (<em>Appears on:</em>
  7798. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  7799. </p>
  7800. <p>
  7801. <p>PreviderProvider configures a store to sync secrets using the Previder Secret Manager provider.</p>
  7802. </p>
  7803. <table>
  7804. <thead>
  7805. <tr>
  7806. <th>Field</th>
  7807. <th>Description</th>
  7808. </tr>
  7809. </thead>
  7810. <tbody>
  7811. <tr>
  7812. <td>
  7813. <code>auth</code></br>
  7814. <em>
  7815. <a href="#external-secrets.io/v1.PreviderAuth">
  7816. PreviderAuth
  7817. </a>
  7818. </em>
  7819. </td>
  7820. <td>
  7821. </td>
  7822. </tr>
  7823. <tr>
  7824. <td>
  7825. <code>baseUri</code></br>
  7826. <em>
  7827. string
  7828. </em>
  7829. </td>
  7830. <td>
  7831. <em>(Optional)</em>
  7832. </td>
  7833. </tr>
  7834. </tbody>
  7835. </table>
  7836. <h3 id="external-secrets.io/v1.Provider">Provider
  7837. </h3>
  7838. <p>
  7839. <p>Provider is a common interface for interacting with secret backends.</p>
  7840. </p>
  7841. <h3 id="external-secrets.io/v1.PulumiProvider">PulumiProvider
  7842. </h3>
  7843. <p>
  7844. (<em>Appears on:</em>
  7845. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  7846. </p>
  7847. <p>
  7848. </p>
  7849. <table>
  7850. <thead>
  7851. <tr>
  7852. <th>Field</th>
  7853. <th>Description</th>
  7854. </tr>
  7855. </thead>
  7856. <tbody>
  7857. <tr>
  7858. <td>
  7859. <code>apiUrl</code></br>
  7860. <em>
  7861. string
  7862. </em>
  7863. </td>
  7864. <td>
  7865. <p>APIURL is the URL of the Pulumi API.</p>
  7866. </td>
  7867. </tr>
  7868. <tr>
  7869. <td>
  7870. <code>accessToken</code></br>
  7871. <em>
  7872. <a href="#external-secrets.io/v1.PulumiProviderSecretRef">
  7873. PulumiProviderSecretRef
  7874. </a>
  7875. </em>
  7876. </td>
  7877. <td>
  7878. <p>AccessToken is the access tokens to sign in to the Pulumi Cloud Console.</p>
  7879. </td>
  7880. </tr>
  7881. <tr>
  7882. <td>
  7883. <code>organization</code></br>
  7884. <em>
  7885. string
  7886. </em>
  7887. </td>
  7888. <td>
  7889. <p>Organization are a space to collaborate on shared projects and stacks.
  7890. To create a new organization, visit <a href="https://app.pulumi.com/">https://app.pulumi.com/</a> and click &ldquo;New Organization&rdquo;.</p>
  7891. </td>
  7892. </tr>
  7893. <tr>
  7894. <td>
  7895. <code>project</code></br>
  7896. <em>
  7897. string
  7898. </em>
  7899. </td>
  7900. <td>
  7901. <p>Project is the name of the Pulumi ESC project the environment belongs to.</p>
  7902. </td>
  7903. </tr>
  7904. <tr>
  7905. <td>
  7906. <code>environment</code></br>
  7907. <em>
  7908. string
  7909. </em>
  7910. </td>
  7911. <td>
  7912. <p>Environment are YAML documents composed of static key-value pairs, programmatic expressions,
  7913. dynamically retrieved values from supported providers including all major clouds,
  7914. and other Pulumi ESC environments.
  7915. To create a new environment, visit <a href="https://www.pulumi.com/docs/esc/environments/">https://www.pulumi.com/docs/esc/environments/</a> for more information.</p>
  7916. </td>
  7917. </tr>
  7918. </tbody>
  7919. </table>
  7920. <h3 id="external-secrets.io/v1.PulumiProviderSecretRef">PulumiProviderSecretRef
  7921. </h3>
  7922. <p>
  7923. (<em>Appears on:</em>
  7924. <a href="#external-secrets.io/v1.PulumiProvider">PulumiProvider</a>)
  7925. </p>
  7926. <p>
  7927. </p>
  7928. <table>
  7929. <thead>
  7930. <tr>
  7931. <th>Field</th>
  7932. <th>Description</th>
  7933. </tr>
  7934. </thead>
  7935. <tbody>
  7936. <tr>
  7937. <td>
  7938. <code>secretRef</code></br>
  7939. <em>
  7940. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  7941. External Secrets meta/v1.SecretKeySelector
  7942. </a>
  7943. </em>
  7944. </td>
  7945. <td>
  7946. <p>SecretRef is a reference to a secret containing the Pulumi API token.</p>
  7947. </td>
  7948. </tr>
  7949. </tbody>
  7950. </table>
  7951. <h3 id="external-secrets.io/v1.PushSecretData">PushSecretData
  7952. </h3>
  7953. <p>
  7954. <p>PushSecretData is an interface to allow using v1alpha1.PushSecretData content in Provider registered in v1.</p>
  7955. </p>
  7956. <h3 id="external-secrets.io/v1.PushSecretRemoteRef">PushSecretRemoteRef
  7957. </h3>
  7958. <p>
  7959. <p>PushSecretRemoteRef is an interface to allow using v1alpha1.PushSecretRemoteRef in Provider registered in v1.</p>
  7960. </p>
  7961. <h3 id="external-secrets.io/v1.ScalewayProvider">ScalewayProvider
  7962. </h3>
  7963. <p>
  7964. (<em>Appears on:</em>
  7965. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  7966. </p>
  7967. <p>
  7968. </p>
  7969. <table>
  7970. <thead>
  7971. <tr>
  7972. <th>Field</th>
  7973. <th>Description</th>
  7974. </tr>
  7975. </thead>
  7976. <tbody>
  7977. <tr>
  7978. <td>
  7979. <code>apiUrl</code></br>
  7980. <em>
  7981. string
  7982. </em>
  7983. </td>
  7984. <td>
  7985. <em>(Optional)</em>
  7986. <p>APIURL is the url of the api to use. Defaults to <a href="https://api.scaleway.com">https://api.scaleway.com</a></p>
  7987. </td>
  7988. </tr>
  7989. <tr>
  7990. <td>
  7991. <code>region</code></br>
  7992. <em>
  7993. string
  7994. </em>
  7995. </td>
  7996. <td>
  7997. <p>Region where your secrets are located: <a href="https://developers.scaleway.com/en/quickstart/#region-and-zone">https://developers.scaleway.com/en/quickstart/#region-and-zone</a></p>
  7998. </td>
  7999. </tr>
  8000. <tr>
  8001. <td>
  8002. <code>projectId</code></br>
  8003. <em>
  8004. string
  8005. </em>
  8006. </td>
  8007. <td>
  8008. <p>ProjectID is the id of your project, which you can find in the console: <a href="https://console.scaleway.com/project/settings">https://console.scaleway.com/project/settings</a></p>
  8009. </td>
  8010. </tr>
  8011. <tr>
  8012. <td>
  8013. <code>accessKey</code></br>
  8014. <em>
  8015. <a href="#external-secrets.io/v1.ScalewayProviderSecretRef">
  8016. ScalewayProviderSecretRef
  8017. </a>
  8018. </em>
  8019. </td>
  8020. <td>
  8021. <p>AccessKey is the non-secret part of the api key.</p>
  8022. </td>
  8023. </tr>
  8024. <tr>
  8025. <td>
  8026. <code>secretKey</code></br>
  8027. <em>
  8028. <a href="#external-secrets.io/v1.ScalewayProviderSecretRef">
  8029. ScalewayProviderSecretRef
  8030. </a>
  8031. </em>
  8032. </td>
  8033. <td>
  8034. <p>SecretKey is the non-secret part of the api key.</p>
  8035. </td>
  8036. </tr>
  8037. </tbody>
  8038. </table>
  8039. <h3 id="external-secrets.io/v1.ScalewayProviderSecretRef">ScalewayProviderSecretRef
  8040. </h3>
  8041. <p>
  8042. (<em>Appears on:</em>
  8043. <a href="#external-secrets.io/v1.ScalewayProvider">ScalewayProvider</a>)
  8044. </p>
  8045. <p>
  8046. </p>
  8047. <table>
  8048. <thead>
  8049. <tr>
  8050. <th>Field</th>
  8051. <th>Description</th>
  8052. </tr>
  8053. </thead>
  8054. <tbody>
  8055. <tr>
  8056. <td>
  8057. <code>value</code></br>
  8058. <em>
  8059. string
  8060. </em>
  8061. </td>
  8062. <td>
  8063. <em>(Optional)</em>
  8064. <p>Value can be specified directly to set a value without using a secret.</p>
  8065. </td>
  8066. </tr>
  8067. <tr>
  8068. <td>
  8069. <code>secretRef</code></br>
  8070. <em>
  8071. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8072. External Secrets meta/v1.SecretKeySelector
  8073. </a>
  8074. </em>
  8075. </td>
  8076. <td>
  8077. <em>(Optional)</em>
  8078. <p>SecretRef references a key in a secret that will be used as value.</p>
  8079. </td>
  8080. </tr>
  8081. </tbody>
  8082. </table>
  8083. <h3 id="external-secrets.io/v1.SecretServerProvider">SecretServerProvider
  8084. </h3>
  8085. <p>
  8086. (<em>Appears on:</em>
  8087. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  8088. </p>
  8089. <p>
  8090. <p>See <a href="https://github.com/DelineaXPM/tss-sdk-go/blob/main/server/server.go">https://github.com/DelineaXPM/tss-sdk-go/blob/main/server/server.go</a>.</p>
  8091. </p>
  8092. <table>
  8093. <thead>
  8094. <tr>
  8095. <th>Field</th>
  8096. <th>Description</th>
  8097. </tr>
  8098. </thead>
  8099. <tbody>
  8100. <tr>
  8101. <td>
  8102. <code>username</code></br>
  8103. <em>
  8104. <a href="#external-secrets.io/v1.SecretServerProviderRef">
  8105. SecretServerProviderRef
  8106. </a>
  8107. </em>
  8108. </td>
  8109. <td>
  8110. <p>Username is the secret server account username.</p>
  8111. </td>
  8112. </tr>
  8113. <tr>
  8114. <td>
  8115. <code>password</code></br>
  8116. <em>
  8117. <a href="#external-secrets.io/v1.SecretServerProviderRef">
  8118. SecretServerProviderRef
  8119. </a>
  8120. </em>
  8121. </td>
  8122. <td>
  8123. <p>Password is the secret server account password.</p>
  8124. </td>
  8125. </tr>
  8126. <tr>
  8127. <td>
  8128. <code>serverURL</code></br>
  8129. <em>
  8130. string
  8131. </em>
  8132. </td>
  8133. <td>
  8134. <p>ServerURL
  8135. URL to your secret server installation</p>
  8136. </td>
  8137. </tr>
  8138. </tbody>
  8139. </table>
  8140. <h3 id="external-secrets.io/v1.SecretServerProviderRef">SecretServerProviderRef
  8141. </h3>
  8142. <p>
  8143. (<em>Appears on:</em>
  8144. <a href="#external-secrets.io/v1.SecretServerProvider">SecretServerProvider</a>)
  8145. </p>
  8146. <p>
  8147. </p>
  8148. <table>
  8149. <thead>
  8150. <tr>
  8151. <th>Field</th>
  8152. <th>Description</th>
  8153. </tr>
  8154. </thead>
  8155. <tbody>
  8156. <tr>
  8157. <td>
  8158. <code>value</code></br>
  8159. <em>
  8160. string
  8161. </em>
  8162. </td>
  8163. <td>
  8164. <em>(Optional)</em>
  8165. <p>Value can be specified directly to set a value without using a secret.</p>
  8166. </td>
  8167. </tr>
  8168. <tr>
  8169. <td>
  8170. <code>secretRef</code></br>
  8171. <em>
  8172. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  8173. External Secrets meta/v1.SecretKeySelector
  8174. </a>
  8175. </em>
  8176. </td>
  8177. <td>
  8178. <em>(Optional)</em>
  8179. <p>SecretRef references a key in a secret that will be used as value.</p>
  8180. </td>
  8181. </tr>
  8182. </tbody>
  8183. </table>
  8184. <h3 id="external-secrets.io/v1.SecretStore">SecretStore
  8185. </h3>
  8186. <p>
  8187. <p>SecretStore represents a secure external location for storing secrets, which can be referenced as part of <code>storeRef</code> fields.</p>
  8188. </p>
  8189. <table>
  8190. <thead>
  8191. <tr>
  8192. <th>Field</th>
  8193. <th>Description</th>
  8194. </tr>
  8195. </thead>
  8196. <tbody>
  8197. <tr>
  8198. <td>
  8199. <code>metadata</code></br>
  8200. <em>
  8201. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#objectmeta-v1-meta">
  8202. Kubernetes meta/v1.ObjectMeta
  8203. </a>
  8204. </em>
  8205. </td>
  8206. <td>
  8207. Refer to the Kubernetes API documentation for the fields of the
  8208. <code>metadata</code> field.
  8209. </td>
  8210. </tr>
  8211. <tr>
  8212. <td>
  8213. <code>spec</code></br>
  8214. <em>
  8215. <a href="#external-secrets.io/v1.SecretStoreSpec">
  8216. SecretStoreSpec
  8217. </a>
  8218. </em>
  8219. </td>
  8220. <td>
  8221. <br/>
  8222. <br/>
  8223. <table>
  8224. <tr>
  8225. <td>
  8226. <code>controller</code></br>
  8227. <em>
  8228. string
  8229. </em>
  8230. </td>
  8231. <td>
  8232. <em>(Optional)</em>
  8233. <p>Used to select the correct ESO controller (think: ingress.ingressClassName)
  8234. The ESO controller is instantiated with a specific controller name and filters ES based on this property</p>
  8235. </td>
  8236. </tr>
  8237. <tr>
  8238. <td>
  8239. <code>provider</code></br>
  8240. <em>
  8241. <a href="#external-secrets.io/v1.SecretStoreProvider">
  8242. SecretStoreProvider
  8243. </a>
  8244. </em>
  8245. </td>
  8246. <td>
  8247. <p>Used to configure the provider. Only one provider may be set</p>
  8248. </td>
  8249. </tr>
  8250. <tr>
  8251. <td>
  8252. <code>retrySettings</code></br>
  8253. <em>
  8254. <a href="#external-secrets.io/v1.SecretStoreRetrySettings">
  8255. SecretStoreRetrySettings
  8256. </a>
  8257. </em>
  8258. </td>
  8259. <td>
  8260. <em>(Optional)</em>
  8261. <p>Used to configure http retries if failed</p>
  8262. </td>
  8263. </tr>
  8264. <tr>
  8265. <td>
  8266. <code>refreshInterval</code></br>
  8267. <em>
  8268. int
  8269. </em>
  8270. </td>
  8271. <td>
  8272. <em>(Optional)</em>
  8273. <p>Used to configure store refresh interval in seconds. Empty or 0 will default to the controller config.</p>
  8274. </td>
  8275. </tr>
  8276. <tr>
  8277. <td>
  8278. <code>conditions</code></br>
  8279. <em>
  8280. <a href="#external-secrets.io/v1.ClusterSecretStoreCondition">
  8281. []ClusterSecretStoreCondition
  8282. </a>
  8283. </em>
  8284. </td>
  8285. <td>
  8286. <em>(Optional)</em>
  8287. <p>Used to constraint a ClusterSecretStore to specific namespaces. Relevant only to ClusterSecretStore</p>
  8288. </td>
  8289. </tr>
  8290. </table>
  8291. </td>
  8292. </tr>
  8293. <tr>
  8294. <td>
  8295. <code>status</code></br>
  8296. <em>
  8297. <a href="#external-secrets.io/v1.SecretStoreStatus">
  8298. SecretStoreStatus
  8299. </a>
  8300. </em>
  8301. </td>
  8302. <td>
  8303. </td>
  8304. </tr>
  8305. </tbody>
  8306. </table>
  8307. <h3 id="external-secrets.io/v1.SecretStoreCapabilities">SecretStoreCapabilities
  8308. (<code>string</code> alias)</p></h3>
  8309. <p>
  8310. (<em>Appears on:</em>
  8311. <a href="#external-secrets.io/v1.SecretStoreStatus">SecretStoreStatus</a>)
  8312. </p>
  8313. <p>
  8314. <p>SecretStoreCapabilities defines the possible operations a SecretStore can do.</p>
  8315. </p>
  8316. <table>
  8317. <thead>
  8318. <tr>
  8319. <th>Value</th>
  8320. <th>Description</th>
  8321. </tr>
  8322. </thead>
  8323. <tbody><tr><td><p>&#34;ReadOnly&#34;</p></td>
  8324. <td></td>
  8325. </tr><tr><td><p>&#34;ReadWrite&#34;</p></td>
  8326. <td></td>
  8327. </tr><tr><td><p>&#34;WriteOnly&#34;</p></td>
  8328. <td></td>
  8329. </tr></tbody>
  8330. </table>
  8331. <h3 id="external-secrets.io/v1.SecretStoreConditionType">SecretStoreConditionType
  8332. (<code>string</code> alias)</p></h3>
  8333. <p>
  8334. (<em>Appears on:</em>
  8335. <a href="#external-secrets.io/v1.SecretStoreStatusCondition">SecretStoreStatusCondition</a>)
  8336. </p>
  8337. <p>
  8338. </p>
  8339. <table>
  8340. <thead>
  8341. <tr>
  8342. <th>Value</th>
  8343. <th>Description</th>
  8344. </tr>
  8345. </thead>
  8346. <tbody><tr><td><p>&#34;Ready&#34;</p></td>
  8347. <td></td>
  8348. </tr></tbody>
  8349. </table>
  8350. <h3 id="external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider
  8351. </h3>
  8352. <p>
  8353. (<em>Appears on:</em>
  8354. <a href="#external-secrets.io/v1.SecretStoreSpec">SecretStoreSpec</a>)
  8355. </p>
  8356. <p>
  8357. <p>SecretStoreProvider contains the provider-specific configuration.</p>
  8358. </p>
  8359. <table>
  8360. <thead>
  8361. <tr>
  8362. <th>Field</th>
  8363. <th>Description</th>
  8364. </tr>
  8365. </thead>
  8366. <tbody>
  8367. <tr>
  8368. <td>
  8369. <code>aws</code></br>
  8370. <em>
  8371. <a href="#external-secrets.io/v1.AWSProvider">
  8372. AWSProvider
  8373. </a>
  8374. </em>
  8375. </td>
  8376. <td>
  8377. <em>(Optional)</em>
  8378. <p>AWS configures this store to sync secrets using AWS Secret Manager provider</p>
  8379. </td>
  8380. </tr>
  8381. <tr>
  8382. <td>
  8383. <code>azurekv</code></br>
  8384. <em>
  8385. <a href="#external-secrets.io/v1.AzureKVProvider">
  8386. AzureKVProvider
  8387. </a>
  8388. </em>
  8389. </td>
  8390. <td>
  8391. <em>(Optional)</em>
  8392. <p>AzureKV configures this store to sync secrets using Azure Key Vault provider</p>
  8393. </td>
  8394. </tr>
  8395. <tr>
  8396. <td>
  8397. <code>akeyless</code></br>
  8398. <em>
  8399. <a href="#external-secrets.io/v1.AkeylessProvider">
  8400. AkeylessProvider
  8401. </a>
  8402. </em>
  8403. </td>
  8404. <td>
  8405. <em>(Optional)</em>
  8406. <p>Akeyless configures this store to sync secrets using Akeyless Vault provider</p>
  8407. </td>
  8408. </tr>
  8409. <tr>
  8410. <td>
  8411. <code>bitwardensecretsmanager</code></br>
  8412. <em>
  8413. <a href="#external-secrets.io/v1.BitwardenSecretsManagerProvider">
  8414. BitwardenSecretsManagerProvider
  8415. </a>
  8416. </em>
  8417. </td>
  8418. <td>
  8419. <em>(Optional)</em>
  8420. <p>BitwardenSecretsManager configures this store to sync secrets using BitwardenSecretsManager provider</p>
  8421. </td>
  8422. </tr>
  8423. <tr>
  8424. <td>
  8425. <code>vault</code></br>
  8426. <em>
  8427. <a href="#external-secrets.io/v1.VaultProvider">
  8428. VaultProvider
  8429. </a>
  8430. </em>
  8431. </td>
  8432. <td>
  8433. <em>(Optional)</em>
  8434. <p>Vault configures this store to sync secrets using Hashi provider</p>
  8435. </td>
  8436. </tr>
  8437. <tr>
  8438. <td>
  8439. <code>gcpsm</code></br>
  8440. <em>
  8441. <a href="#external-secrets.io/v1.GCPSMProvider">
  8442. GCPSMProvider
  8443. </a>
  8444. </em>
  8445. </td>
  8446. <td>
  8447. <em>(Optional)</em>
  8448. <p>GCPSM configures this store to sync secrets using Google Cloud Platform Secret Manager provider</p>
  8449. </td>
  8450. </tr>
  8451. <tr>
  8452. <td>
  8453. <code>oracle</code></br>
  8454. <em>
  8455. <a href="#external-secrets.io/v1.OracleProvider">
  8456. OracleProvider
  8457. </a>
  8458. </em>
  8459. </td>
  8460. <td>
  8461. <em>(Optional)</em>
  8462. <p>Oracle configures this store to sync secrets using Oracle Vault provider</p>
  8463. </td>
  8464. </tr>
  8465. <tr>
  8466. <td>
  8467. <code>ibm</code></br>
  8468. <em>
  8469. <a href="#external-secrets.io/v1.IBMProvider">
  8470. IBMProvider
  8471. </a>
  8472. </em>
  8473. </td>
  8474. <td>
  8475. <em>(Optional)</em>
  8476. <p>IBM configures this store to sync secrets using IBM Cloud provider</p>
  8477. </td>
  8478. </tr>
  8479. <tr>
  8480. <td>
  8481. <code>yandexcertificatemanager</code></br>
  8482. <em>
  8483. <a href="#external-secrets.io/v1.YandexCertificateManagerProvider">
  8484. YandexCertificateManagerProvider
  8485. </a>
  8486. </em>
  8487. </td>
  8488. <td>
  8489. <em>(Optional)</em>
  8490. <p>YandexCertificateManager configures this store to sync secrets using Yandex Certificate Manager provider</p>
  8491. </td>
  8492. </tr>
  8493. <tr>
  8494. <td>
  8495. <code>yandexlockbox</code></br>
  8496. <em>
  8497. <a href="#external-secrets.io/v1.YandexLockboxProvider">
  8498. YandexLockboxProvider
  8499. </a>
  8500. </em>
  8501. </td>
  8502. <td>
  8503. <em>(Optional)</em>
  8504. <p>YandexLockbox configures this store to sync secrets using Yandex Lockbox provider</p>
  8505. </td>
  8506. </tr>
  8507. <tr>
  8508. <td>
  8509. <code>github</code></br>
  8510. <em>
  8511. <a href="#external-secrets.io/v1.GithubProvider">
  8512. GithubProvider
  8513. </a>
  8514. </em>
  8515. </td>
  8516. <td>
  8517. <em>(Optional)</em>
  8518. <p>Github configures this store to push Github Action secrets using Github API provider</p>
  8519. </td>
  8520. </tr>
  8521. <tr>
  8522. <td>
  8523. <code>gitlab</code></br>
  8524. <em>
  8525. <a href="#external-secrets.io/v1.GitlabProvider">
  8526. GitlabProvider
  8527. </a>
  8528. </em>
  8529. </td>
  8530. <td>
  8531. <em>(Optional)</em>
  8532. <p>GitLab configures this store to sync secrets using GitLab Variables provider</p>
  8533. </td>
  8534. </tr>
  8535. <tr>
  8536. <td>
  8537. <code>alibaba</code></br>
  8538. <em>
  8539. <a href="#external-secrets.io/v1.AlibabaProvider">
  8540. AlibabaProvider
  8541. </a>
  8542. </em>
  8543. </td>
  8544. <td>
  8545. <em>(Optional)</em>
  8546. <p>Alibaba configures this store to sync secrets using Alibaba Cloud provider</p>
  8547. </td>
  8548. </tr>
  8549. <tr>
  8550. <td>
  8551. <code>onepassword</code></br>
  8552. <em>
  8553. <a href="#external-secrets.io/v1.OnePasswordProvider">
  8554. OnePasswordProvider
  8555. </a>
  8556. </em>
  8557. </td>
  8558. <td>
  8559. <em>(Optional)</em>
  8560. <p>OnePassword configures this store to sync secrets using the 1Password Cloud provider</p>
  8561. </td>
  8562. </tr>
  8563. <tr>
  8564. <td>
  8565. <code>onepasswordSDK</code></br>
  8566. <em>
  8567. <a href="#external-secrets.io/v1.OnePasswordSDKProvider">
  8568. OnePasswordSDKProvider
  8569. </a>
  8570. </em>
  8571. </td>
  8572. <td>
  8573. <em>(Optional)</em>
  8574. <p>OnePasswordSDK configures this store to use 1Password&rsquo;s new Go SDK to sync secrets.</p>
  8575. </td>
  8576. </tr>
  8577. <tr>
  8578. <td>
  8579. <code>webhook</code></br>
  8580. <em>
  8581. <a href="#external-secrets.io/v1.WebhookProvider">
  8582. WebhookProvider
  8583. </a>
  8584. </em>
  8585. </td>
  8586. <td>
  8587. <em>(Optional)</em>
  8588. <p>Webhook configures this store to sync secrets using a generic templated webhook</p>
  8589. </td>
  8590. </tr>
  8591. <tr>
  8592. <td>
  8593. <code>kubernetes</code></br>
  8594. <em>
  8595. <a href="#external-secrets.io/v1.KubernetesProvider">
  8596. KubernetesProvider
  8597. </a>
  8598. </em>
  8599. </td>
  8600. <td>
  8601. <em>(Optional)</em>
  8602. <p>Kubernetes configures this store to sync secrets using a Kubernetes cluster provider</p>
  8603. </td>
  8604. </tr>
  8605. <tr>
  8606. <td>
  8607. <code>fake</code></br>
  8608. <em>
  8609. <a href="#external-secrets.io/v1.FakeProvider">
  8610. FakeProvider
  8611. </a>
  8612. </em>
  8613. </td>
  8614. <td>
  8615. <em>(Optional)</em>
  8616. <p>Fake configures a store with static key/value pairs</p>
  8617. </td>
  8618. </tr>
  8619. <tr>
  8620. <td>
  8621. <code>senhasegura</code></br>
  8622. <em>
  8623. <a href="#external-secrets.io/v1.SenhaseguraProvider">
  8624. SenhaseguraProvider
  8625. </a>
  8626. </em>
  8627. </td>
  8628. <td>
  8629. <em>(Optional)</em>
  8630. <p>Senhasegura configures this store to sync secrets using senhasegura provider</p>
  8631. </td>
  8632. </tr>
  8633. <tr>
  8634. <td>
  8635. <code>scaleway</code></br>
  8636. <em>
  8637. <a href="#external-secrets.io/v1.ScalewayProvider">
  8638. ScalewayProvider
  8639. </a>
  8640. </em>
  8641. </td>
  8642. <td>
  8643. <em>(Optional)</em>
  8644. <p>Scaleway</p>
  8645. </td>
  8646. </tr>
  8647. <tr>
  8648. <td>
  8649. <code>doppler</code></br>
  8650. <em>
  8651. <a href="#external-secrets.io/v1.DopplerProvider">
  8652. DopplerProvider
  8653. </a>
  8654. </em>
  8655. </td>
  8656. <td>
  8657. <em>(Optional)</em>
  8658. <p>Doppler configures this store to sync secrets using the Doppler provider</p>
  8659. </td>
  8660. </tr>
  8661. <tr>
  8662. <td>
  8663. <code>previder</code></br>
  8664. <em>
  8665. <a href="#external-secrets.io/v1.PreviderProvider">
  8666. PreviderProvider
  8667. </a>
  8668. </em>
  8669. </td>
  8670. <td>
  8671. <em>(Optional)</em>
  8672. <p>Previder configures this store to sync secrets using the Previder provider</p>
  8673. </td>
  8674. </tr>
  8675. <tr>
  8676. <td>
  8677. <code>onboardbase</code></br>
  8678. <em>
  8679. <a href="#external-secrets.io/v1.OnboardbaseProvider">
  8680. OnboardbaseProvider
  8681. </a>
  8682. </em>
  8683. </td>
  8684. <td>
  8685. <em>(Optional)</em>
  8686. <p>Onboardbase configures this store to sync secrets using the Onboardbase provider</p>
  8687. </td>
  8688. </tr>
  8689. <tr>
  8690. <td>
  8691. <code>keepersecurity</code></br>
  8692. <em>
  8693. <a href="#external-secrets.io/v1.KeeperSecurityProvider">
  8694. KeeperSecurityProvider
  8695. </a>
  8696. </em>
  8697. </td>
  8698. <td>
  8699. <em>(Optional)</em>
  8700. <p>KeeperSecurity configures this store to sync secrets using the KeeperSecurity provider</p>
  8701. </td>
  8702. </tr>
  8703. <tr>
  8704. <td>
  8705. <code>conjur</code></br>
  8706. <em>
  8707. <a href="#external-secrets.io/v1.ConjurProvider">
  8708. ConjurProvider
  8709. </a>
  8710. </em>
  8711. </td>
  8712. <td>
  8713. <em>(Optional)</em>
  8714. <p>Conjur configures this store to sync secrets using conjur provider</p>
  8715. </td>
  8716. </tr>
  8717. <tr>
  8718. <td>
  8719. <code>delinea</code></br>
  8720. <em>
  8721. <a href="#external-secrets.io/v1.DelineaProvider">
  8722. DelineaProvider
  8723. </a>
  8724. </em>
  8725. </td>
  8726. <td>
  8727. <em>(Optional)</em>
  8728. <p>Delinea DevOps Secrets Vault
  8729. <a href="https://docs.delinea.com/online-help/products/devops-secrets-vault/current">https://docs.delinea.com/online-help/products/devops-secrets-vault/current</a></p>
  8730. </td>
  8731. </tr>
  8732. <tr>
  8733. <td>
  8734. <code>secretserver</code></br>
  8735. <em>
  8736. <a href="#external-secrets.io/v1.SecretServerProvider">
  8737. SecretServerProvider
  8738. </a>
  8739. </em>
  8740. </td>
  8741. <td>
  8742. <em>(Optional)</em>
  8743. <p>SecretServer configures this store to sync secrets using SecretServer provider
  8744. <a href="https://docs.delinea.com/online-help/secret-server/start.htm">https://docs.delinea.com/online-help/secret-server/start.htm</a></p>
  8745. </td>
  8746. </tr>
  8747. <tr>
  8748. <td>
  8749. <code>chef</code></br>
  8750. <em>
  8751. <a href="#external-secrets.io/v1.ChefProvider">
  8752. ChefProvider
  8753. </a>
  8754. </em>
  8755. </td>
  8756. <td>
  8757. <em>(Optional)</em>
  8758. <p>Chef configures this store to sync secrets with chef server</p>
  8759. </td>
  8760. </tr>
  8761. <tr>
  8762. <td>
  8763. <code>pulumi</code></br>
  8764. <em>
  8765. <a href="#external-secrets.io/v1.PulumiProvider">
  8766. PulumiProvider
  8767. </a>
  8768. </em>
  8769. </td>
  8770. <td>
  8771. <em>(Optional)</em>
  8772. <p>Pulumi configures this store to sync secrets using the Pulumi provider</p>
  8773. </td>
  8774. </tr>
  8775. <tr>
  8776. <td>
  8777. <code>fortanix</code></br>
  8778. <em>
  8779. <a href="#external-secrets.io/v1.FortanixProvider">
  8780. FortanixProvider
  8781. </a>
  8782. </em>
  8783. </td>
  8784. <td>
  8785. <em>(Optional)</em>
  8786. <p>Fortanix configures this store to sync secrets using the Fortanix provider</p>
  8787. </td>
  8788. </tr>
  8789. <tr>
  8790. <td>
  8791. <code>passworddepot</code></br>
  8792. <em>
  8793. <a href="#external-secrets.io/v1.PasswordDepotProvider">
  8794. PasswordDepotProvider
  8795. </a>
  8796. </em>
  8797. </td>
  8798. <td>
  8799. <em>(Optional)</em>
  8800. </td>
  8801. </tr>
  8802. <tr>
  8803. <td>
  8804. <code>passbolt</code></br>
  8805. <em>
  8806. <a href="#external-secrets.io/v1.PassboltProvider">
  8807. PassboltProvider
  8808. </a>
  8809. </em>
  8810. </td>
  8811. <td>
  8812. <em>(Optional)</em>
  8813. </td>
  8814. </tr>
  8815. <tr>
  8816. <td>
  8817. <code>device42</code></br>
  8818. <em>
  8819. <a href="#external-secrets.io/v1.Device42Provider">
  8820. Device42Provider
  8821. </a>
  8822. </em>
  8823. </td>
  8824. <td>
  8825. <em>(Optional)</em>
  8826. <p>Device42 configures this store to sync secrets using the Device42 provider</p>
  8827. </td>
  8828. </tr>
  8829. <tr>
  8830. <td>
  8831. <code>infisical</code></br>
  8832. <em>
  8833. <a href="#external-secrets.io/v1.InfisicalProvider">
  8834. InfisicalProvider
  8835. </a>
  8836. </em>
  8837. </td>
  8838. <td>
  8839. <em>(Optional)</em>
  8840. <p>Infisical configures this store to sync secrets using the Infisical provider</p>
  8841. </td>
  8842. </tr>
  8843. <tr>
  8844. <td>
  8845. <code>beyondtrust</code></br>
  8846. <em>
  8847. <a href="#external-secrets.io/v1.BeyondtrustProvider">
  8848. BeyondtrustProvider
  8849. </a>
  8850. </em>
  8851. </td>
  8852. <td>
  8853. <em>(Optional)</em>
  8854. <p>Beyondtrust configures this store to sync secrets using Password Safe provider.</p>
  8855. </td>
  8856. </tr>
  8857. <tr>
  8858. <td>
  8859. <code>cloudrusm</code></br>
  8860. <em>
  8861. <a href="#external-secrets.io/v1.CloudruSMProvider">
  8862. CloudruSMProvider
  8863. </a>
  8864. </em>
  8865. </td>
  8866. <td>
  8867. <em>(Optional)</em>
  8868. <p>CloudruSM configures this store to sync secrets using the Cloud.ru Secret Manager provider</p>
  8869. </td>
  8870. </tr>
  8871. </tbody>
  8872. </table>
  8873. <h3 id="external-secrets.io/v1.SecretStoreRef">SecretStoreRef
  8874. </h3>
  8875. <p>
  8876. (<em>Appears on:</em>
  8877. <a href="#external-secrets.io/v1.ExternalSecretSpec">ExternalSecretSpec</a>,
  8878. <a href="#external-secrets.io/v1.StoreGeneratorSourceRef">StoreGeneratorSourceRef</a>,
  8879. <a href="#external-secrets.io/v1.StoreSourceRef">StoreSourceRef</a>)
  8880. </p>
  8881. <p>
  8882. <p>SecretStoreRef defines which SecretStore to fetch the ExternalSecret data.</p>
  8883. </p>
  8884. <table>
  8885. <thead>
  8886. <tr>
  8887. <th>Field</th>
  8888. <th>Description</th>
  8889. </tr>
  8890. </thead>
  8891. <tbody>
  8892. <tr>
  8893. <td>
  8894. <code>name</code></br>
  8895. <em>
  8896. string
  8897. </em>
  8898. </td>
  8899. <td>
  8900. <p>Name of the SecretStore resource</p>
  8901. </td>
  8902. </tr>
  8903. <tr>
  8904. <td>
  8905. <code>kind</code></br>
  8906. <em>
  8907. string
  8908. </em>
  8909. </td>
  8910. <td>
  8911. <em>(Optional)</em>
  8912. <p>Kind of the SecretStore resource (SecretStore or ClusterSecretStore)
  8913. Defaults to <code>SecretStore</code></p>
  8914. </td>
  8915. </tr>
  8916. </tbody>
  8917. </table>
  8918. <h3 id="external-secrets.io/v1.SecretStoreRetrySettings">SecretStoreRetrySettings
  8919. </h3>
  8920. <p>
  8921. (<em>Appears on:</em>
  8922. <a href="#external-secrets.io/v1.SecretStoreSpec">SecretStoreSpec</a>)
  8923. </p>
  8924. <p>
  8925. </p>
  8926. <table>
  8927. <thead>
  8928. <tr>
  8929. <th>Field</th>
  8930. <th>Description</th>
  8931. </tr>
  8932. </thead>
  8933. <tbody>
  8934. <tr>
  8935. <td>
  8936. <code>maxRetries</code></br>
  8937. <em>
  8938. int32
  8939. </em>
  8940. </td>
  8941. <td>
  8942. </td>
  8943. </tr>
  8944. <tr>
  8945. <td>
  8946. <code>retryInterval</code></br>
  8947. <em>
  8948. string
  8949. </em>
  8950. </td>
  8951. <td>
  8952. </td>
  8953. </tr>
  8954. </tbody>
  8955. </table>
  8956. <h3 id="external-secrets.io/v1.SecretStoreSpec">SecretStoreSpec
  8957. </h3>
  8958. <p>
  8959. (<em>Appears on:</em>
  8960. <a href="#external-secrets.io/v1.ClusterSecretStore">ClusterSecretStore</a>,
  8961. <a href="#external-secrets.io/v1.SecretStore">SecretStore</a>)
  8962. </p>
  8963. <p>
  8964. <p>SecretStoreSpec defines the desired state of SecretStore.</p>
  8965. </p>
  8966. <table>
  8967. <thead>
  8968. <tr>
  8969. <th>Field</th>
  8970. <th>Description</th>
  8971. </tr>
  8972. </thead>
  8973. <tbody>
  8974. <tr>
  8975. <td>
  8976. <code>controller</code></br>
  8977. <em>
  8978. string
  8979. </em>
  8980. </td>
  8981. <td>
  8982. <em>(Optional)</em>
  8983. <p>Used to select the correct ESO controller (think: ingress.ingressClassName)
  8984. The ESO controller is instantiated with a specific controller name and filters ES based on this property</p>
  8985. </td>
  8986. </tr>
  8987. <tr>
  8988. <td>
  8989. <code>provider</code></br>
  8990. <em>
  8991. <a href="#external-secrets.io/v1.SecretStoreProvider">
  8992. SecretStoreProvider
  8993. </a>
  8994. </em>
  8995. </td>
  8996. <td>
  8997. <p>Used to configure the provider. Only one provider may be set</p>
  8998. </td>
  8999. </tr>
  9000. <tr>
  9001. <td>
  9002. <code>retrySettings</code></br>
  9003. <em>
  9004. <a href="#external-secrets.io/v1.SecretStoreRetrySettings">
  9005. SecretStoreRetrySettings
  9006. </a>
  9007. </em>
  9008. </td>
  9009. <td>
  9010. <em>(Optional)</em>
  9011. <p>Used to configure http retries if failed</p>
  9012. </td>
  9013. </tr>
  9014. <tr>
  9015. <td>
  9016. <code>refreshInterval</code></br>
  9017. <em>
  9018. int
  9019. </em>
  9020. </td>
  9021. <td>
  9022. <em>(Optional)</em>
  9023. <p>Used to configure store refresh interval in seconds. Empty or 0 will default to the controller config.</p>
  9024. </td>
  9025. </tr>
  9026. <tr>
  9027. <td>
  9028. <code>conditions</code></br>
  9029. <em>
  9030. <a href="#external-secrets.io/v1.ClusterSecretStoreCondition">
  9031. []ClusterSecretStoreCondition
  9032. </a>
  9033. </em>
  9034. </td>
  9035. <td>
  9036. <em>(Optional)</em>
  9037. <p>Used to constraint a ClusterSecretStore to specific namespaces. Relevant only to ClusterSecretStore</p>
  9038. </td>
  9039. </tr>
  9040. </tbody>
  9041. </table>
  9042. <h3 id="external-secrets.io/v1.SecretStoreStatus">SecretStoreStatus
  9043. </h3>
  9044. <p>
  9045. (<em>Appears on:</em>
  9046. <a href="#external-secrets.io/v1.ClusterSecretStore">ClusterSecretStore</a>,
  9047. <a href="#external-secrets.io/v1.SecretStore">SecretStore</a>)
  9048. </p>
  9049. <p>
  9050. <p>SecretStoreStatus defines the observed state of the SecretStore.</p>
  9051. </p>
  9052. <table>
  9053. <thead>
  9054. <tr>
  9055. <th>Field</th>
  9056. <th>Description</th>
  9057. </tr>
  9058. </thead>
  9059. <tbody>
  9060. <tr>
  9061. <td>
  9062. <code>conditions</code></br>
  9063. <em>
  9064. <a href="#external-secrets.io/v1.SecretStoreStatusCondition">
  9065. []SecretStoreStatusCondition
  9066. </a>
  9067. </em>
  9068. </td>
  9069. <td>
  9070. <em>(Optional)</em>
  9071. </td>
  9072. </tr>
  9073. <tr>
  9074. <td>
  9075. <code>capabilities</code></br>
  9076. <em>
  9077. <a href="#external-secrets.io/v1.SecretStoreCapabilities">
  9078. SecretStoreCapabilities
  9079. </a>
  9080. </em>
  9081. </td>
  9082. <td>
  9083. <em>(Optional)</em>
  9084. </td>
  9085. </tr>
  9086. </tbody>
  9087. </table>
  9088. <h3 id="external-secrets.io/v1.SecretStoreStatusCondition">SecretStoreStatusCondition
  9089. </h3>
  9090. <p>
  9091. (<em>Appears on:</em>
  9092. <a href="#external-secrets.io/v1.SecretStoreStatus">SecretStoreStatus</a>)
  9093. </p>
  9094. <p>
  9095. </p>
  9096. <table>
  9097. <thead>
  9098. <tr>
  9099. <th>Field</th>
  9100. <th>Description</th>
  9101. </tr>
  9102. </thead>
  9103. <tbody>
  9104. <tr>
  9105. <td>
  9106. <code>type</code></br>
  9107. <em>
  9108. <a href="#external-secrets.io/v1.SecretStoreConditionType">
  9109. SecretStoreConditionType
  9110. </a>
  9111. </em>
  9112. </td>
  9113. <td>
  9114. </td>
  9115. </tr>
  9116. <tr>
  9117. <td>
  9118. <code>status</code></br>
  9119. <em>
  9120. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#conditionstatus-v1-core">
  9121. Kubernetes core/v1.ConditionStatus
  9122. </a>
  9123. </em>
  9124. </td>
  9125. <td>
  9126. </td>
  9127. </tr>
  9128. <tr>
  9129. <td>
  9130. <code>reason</code></br>
  9131. <em>
  9132. string
  9133. </em>
  9134. </td>
  9135. <td>
  9136. <em>(Optional)</em>
  9137. </td>
  9138. </tr>
  9139. <tr>
  9140. <td>
  9141. <code>message</code></br>
  9142. <em>
  9143. string
  9144. </em>
  9145. </td>
  9146. <td>
  9147. <em>(Optional)</em>
  9148. </td>
  9149. </tr>
  9150. <tr>
  9151. <td>
  9152. <code>lastTransitionTime</code></br>
  9153. <em>
  9154. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.25/#time-v1-meta">
  9155. Kubernetes meta/v1.Time
  9156. </a>
  9157. </em>
  9158. </td>
  9159. <td>
  9160. <em>(Optional)</em>
  9161. </td>
  9162. </tr>
  9163. </tbody>
  9164. </table>
  9165. <h3 id="external-secrets.io/v1.SecretsClient">SecretsClient
  9166. </h3>
  9167. <p>
  9168. <p>SecretsClient provides access to secrets.</p>
  9169. </p>
  9170. <h3 id="external-secrets.io/v1.SecretsManager">SecretsManager
  9171. </h3>
  9172. <p>
  9173. (<em>Appears on:</em>
  9174. <a href="#external-secrets.io/v1.AWSProvider">AWSProvider</a>)
  9175. </p>
  9176. <p>
  9177. <p>SecretsManager defines how the provider behaves when interacting with AWS
  9178. SecretsManager. Some of these settings are only applicable to controlling how
  9179. secrets are deleted, and hence only apply to PushSecret (and only when
  9180. deletionPolicy is set to Delete).</p>
  9181. </p>
  9182. <table>
  9183. <thead>
  9184. <tr>
  9185. <th>Field</th>
  9186. <th>Description</th>
  9187. </tr>
  9188. </thead>
  9189. <tbody>
  9190. <tr>
  9191. <td>
  9192. <code>forceDeleteWithoutRecovery</code></br>
  9193. <em>
  9194. bool
  9195. </em>
  9196. </td>
  9197. <td>
  9198. <em>(Optional)</em>
  9199. <p>Specifies whether to delete the secret without any recovery window. You
  9200. can&rsquo;t use both this parameter and RecoveryWindowInDays in the same call.
  9201. If you don&rsquo;t use either, then by default Secrets Manager uses a 30 day
  9202. recovery window.
  9203. see: <a href="https://docs.aws.amazon.com/secretsmanager/latest/apireference/API_DeleteSecret.html#SecretsManager-DeleteSecret-request-ForceDeleteWithoutRecovery">https://docs.aws.amazon.com/secretsmanager/latest/apireference/API_DeleteSecret.html#SecretsManager-DeleteSecret-request-ForceDeleteWithoutRecovery</a></p>
  9204. </td>
  9205. </tr>
  9206. <tr>
  9207. <td>
  9208. <code>recoveryWindowInDays</code></br>
  9209. <em>
  9210. int64
  9211. </em>
  9212. </td>
  9213. <td>
  9214. <em>(Optional)</em>
  9215. <p>The number of days from 7 to 30 that Secrets Manager waits before
  9216. permanently deleting the secret. You can&rsquo;t use both this parameter and
  9217. ForceDeleteWithoutRecovery in the same call. If you don&rsquo;t use either,
  9218. then by default Secrets Manager uses a 30 day recovery window.
  9219. see: <a href="https://docs.aws.amazon.com/secretsmanager/latest/apireference/API_DeleteSecret.html#SecretsManager-DeleteSecret-request-RecoveryWindowInDays">https://docs.aws.amazon.com/secretsmanager/latest/apireference/API_DeleteSecret.html#SecretsManager-DeleteSecret-request-RecoveryWindowInDays</a></p>
  9220. </td>
  9221. </tr>
  9222. </tbody>
  9223. </table>
  9224. <h3 id="external-secrets.io/v1.SenhaseguraAuth">SenhaseguraAuth
  9225. </h3>
  9226. <p>
  9227. (<em>Appears on:</em>
  9228. <a href="#external-secrets.io/v1.SenhaseguraProvider">SenhaseguraProvider</a>)
  9229. </p>
  9230. <p>
  9231. <p>SenhaseguraAuth tells the controller how to do auth in senhasegura.</p>
  9232. </p>
  9233. <table>
  9234. <thead>
  9235. <tr>
  9236. <th>Field</th>
  9237. <th>Description</th>
  9238. </tr>
  9239. </thead>
  9240. <tbody>
  9241. <tr>
  9242. <td>
  9243. <code>clientId</code></br>
  9244. <em>
  9245. string
  9246. </em>
  9247. </td>
  9248. <td>
  9249. </td>
  9250. </tr>
  9251. <tr>
  9252. <td>
  9253. <code>clientSecretSecretRef</code></br>
  9254. <em>
  9255. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  9256. External Secrets meta/v1.SecretKeySelector
  9257. </a>
  9258. </em>
  9259. </td>
  9260. <td>
  9261. </td>
  9262. </tr>
  9263. </tbody>
  9264. </table>
  9265. <h3 id="external-secrets.io/v1.SenhaseguraModuleType">SenhaseguraModuleType
  9266. (<code>string</code> alias)</p></h3>
  9267. <p>
  9268. (<em>Appears on:</em>
  9269. <a href="#external-secrets.io/v1.SenhaseguraProvider">SenhaseguraProvider</a>)
  9270. </p>
  9271. <p>
  9272. <p>SenhaseguraModuleType enum defines senhasegura target module to fetch secrets</p>
  9273. </p>
  9274. <table>
  9275. <thead>
  9276. <tr>
  9277. <th>Value</th>
  9278. <th>Description</th>
  9279. </tr>
  9280. </thead>
  9281. <tbody><tr><td><p>&#34;DSM&#34;</p></td>
  9282. <td><pre><code> SenhaseguraModuleDSM is the senhasegura DevOps Secrets Management module
  9283. see: https://senhasegura.com/devops
  9284. </code></pre>
  9285. </td>
  9286. </tr></tbody>
  9287. </table>
  9288. <h3 id="external-secrets.io/v1.SenhaseguraProvider">SenhaseguraProvider
  9289. </h3>
  9290. <p>
  9291. (<em>Appears on:</em>
  9292. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  9293. </p>
  9294. <p>
  9295. <p>SenhaseguraProvider setup a store to sync secrets with senhasegura.</p>
  9296. </p>
  9297. <table>
  9298. <thead>
  9299. <tr>
  9300. <th>Field</th>
  9301. <th>Description</th>
  9302. </tr>
  9303. </thead>
  9304. <tbody>
  9305. <tr>
  9306. <td>
  9307. <code>url</code></br>
  9308. <em>
  9309. string
  9310. </em>
  9311. </td>
  9312. <td>
  9313. <p>URL of senhasegura</p>
  9314. </td>
  9315. </tr>
  9316. <tr>
  9317. <td>
  9318. <code>module</code></br>
  9319. <em>
  9320. <a href="#external-secrets.io/v1.SenhaseguraModuleType">
  9321. SenhaseguraModuleType
  9322. </a>
  9323. </em>
  9324. </td>
  9325. <td>
  9326. <p>Module defines which senhasegura module should be used to get secrets</p>
  9327. </td>
  9328. </tr>
  9329. <tr>
  9330. <td>
  9331. <code>auth</code></br>
  9332. <em>
  9333. <a href="#external-secrets.io/v1.SenhaseguraAuth">
  9334. SenhaseguraAuth
  9335. </a>
  9336. </em>
  9337. </td>
  9338. <td>
  9339. <p>Auth defines parameters to authenticate in senhasegura</p>
  9340. </td>
  9341. </tr>
  9342. <tr>
  9343. <td>
  9344. <code>ignoreSslCertificate</code></br>
  9345. <em>
  9346. bool
  9347. </em>
  9348. </td>
  9349. <td>
  9350. <p>IgnoreSslCertificate defines if SSL certificate must be ignored</p>
  9351. </td>
  9352. </tr>
  9353. </tbody>
  9354. </table>
  9355. <h3 id="external-secrets.io/v1.StoreGeneratorSourceRef">StoreGeneratorSourceRef
  9356. </h3>
  9357. <p>
  9358. (<em>Appears on:</em>
  9359. <a href="#external-secrets.io/v1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef</a>)
  9360. </p>
  9361. <p>
  9362. <p>StoreGeneratorSourceRef allows you to override the source
  9363. from which the secret will be pulled from.
  9364. You can define at maximum one property.</p>
  9365. </p>
  9366. <table>
  9367. <thead>
  9368. <tr>
  9369. <th>Field</th>
  9370. <th>Description</th>
  9371. </tr>
  9372. </thead>
  9373. <tbody>
  9374. <tr>
  9375. <td>
  9376. <code>storeRef</code></br>
  9377. <em>
  9378. <a href="#external-secrets.io/v1.SecretStoreRef">
  9379. SecretStoreRef
  9380. </a>
  9381. </em>
  9382. </td>
  9383. <td>
  9384. <em>(Optional)</em>
  9385. </td>
  9386. </tr>
  9387. <tr>
  9388. <td>
  9389. <code>generatorRef</code></br>
  9390. <em>
  9391. <a href="#external-secrets.io/v1.GeneratorRef">
  9392. GeneratorRef
  9393. </a>
  9394. </em>
  9395. </td>
  9396. <td>
  9397. <em>(Optional)</em>
  9398. <p>GeneratorRef points to a generator custom resource.</p>
  9399. </td>
  9400. </tr>
  9401. </tbody>
  9402. </table>
  9403. <h3 id="external-secrets.io/v1.StoreSourceRef">StoreSourceRef
  9404. </h3>
  9405. <p>
  9406. (<em>Appears on:</em>
  9407. <a href="#external-secrets.io/v1.ExternalSecretData">ExternalSecretData</a>)
  9408. </p>
  9409. <p>
  9410. <p>StoreSourceRef allows you to override the SecretStore source
  9411. from which the secret will be pulled from.
  9412. You can define at maximum one property.</p>
  9413. </p>
  9414. <table>
  9415. <thead>
  9416. <tr>
  9417. <th>Field</th>
  9418. <th>Description</th>
  9419. </tr>
  9420. </thead>
  9421. <tbody>
  9422. <tr>
  9423. <td>
  9424. <code>storeRef</code></br>
  9425. <em>
  9426. <a href="#external-secrets.io/v1.SecretStoreRef">
  9427. SecretStoreRef
  9428. </a>
  9429. </em>
  9430. </td>
  9431. <td>
  9432. <em>(Optional)</em>
  9433. </td>
  9434. </tr>
  9435. <tr>
  9436. <td>
  9437. <code>generatorRef</code></br>
  9438. <em>
  9439. <a href="#external-secrets.io/v1.GeneratorRef">
  9440. GeneratorRef
  9441. </a>
  9442. </em>
  9443. </td>
  9444. <td>
  9445. <p>GeneratorRef points to a generator custom resource.</p>
  9446. <p>Deprecated: The generatorRef is not implemented in .data[].
  9447. this will be removed with v1.</p>
  9448. </td>
  9449. </tr>
  9450. </tbody>
  9451. </table>
  9452. <h3 id="external-secrets.io/v1.Tag">Tag
  9453. </h3>
  9454. <p>
  9455. </p>
  9456. <table>
  9457. <thead>
  9458. <tr>
  9459. <th>Field</th>
  9460. <th>Description</th>
  9461. </tr>
  9462. </thead>
  9463. <tbody>
  9464. <tr>
  9465. <td>
  9466. <code>key</code></br>
  9467. <em>
  9468. string
  9469. </em>
  9470. </td>
  9471. <td>
  9472. </td>
  9473. </tr>
  9474. <tr>
  9475. <td>
  9476. <code>value</code></br>
  9477. <em>
  9478. string
  9479. </em>
  9480. </td>
  9481. <td>
  9482. </td>
  9483. </tr>
  9484. </tbody>
  9485. </table>
  9486. <h3 id="external-secrets.io/v1.TemplateEngineVersion">TemplateEngineVersion
  9487. (<code>string</code> alias)</p></h3>
  9488. <p>
  9489. (<em>Appears on:</em>
  9490. <a href="#external-secrets.io/v1.ExternalSecretTemplate">ExternalSecretTemplate</a>)
  9491. </p>
  9492. <p>
  9493. </p>
  9494. <table>
  9495. <thead>
  9496. <tr>
  9497. <th>Value</th>
  9498. <th>Description</th>
  9499. </tr>
  9500. </thead>
  9501. <tbody><tr><td><p>&#34;v2&#34;</p></td>
  9502. <td></td>
  9503. </tr></tbody>
  9504. </table>
  9505. <h3 id="external-secrets.io/v1.TemplateFrom">TemplateFrom
  9506. </h3>
  9507. <p>
  9508. (<em>Appears on:</em>
  9509. <a href="#external-secrets.io/v1.ExternalSecretTemplate">ExternalSecretTemplate</a>)
  9510. </p>
  9511. <p>
  9512. </p>
  9513. <table>
  9514. <thead>
  9515. <tr>
  9516. <th>Field</th>
  9517. <th>Description</th>
  9518. </tr>
  9519. </thead>
  9520. <tbody>
  9521. <tr>
  9522. <td>
  9523. <code>configMap</code></br>
  9524. <em>
  9525. <a href="#external-secrets.io/v1.TemplateRef">
  9526. TemplateRef
  9527. </a>
  9528. </em>
  9529. </td>
  9530. <td>
  9531. </td>
  9532. </tr>
  9533. <tr>
  9534. <td>
  9535. <code>secret</code></br>
  9536. <em>
  9537. <a href="#external-secrets.io/v1.TemplateRef">
  9538. TemplateRef
  9539. </a>
  9540. </em>
  9541. </td>
  9542. <td>
  9543. </td>
  9544. </tr>
  9545. <tr>
  9546. <td>
  9547. <code>target</code></br>
  9548. <em>
  9549. <a href="#external-secrets.io/v1.TemplateTarget">
  9550. TemplateTarget
  9551. </a>
  9552. </em>
  9553. </td>
  9554. <td>
  9555. <em>(Optional)</em>
  9556. </td>
  9557. </tr>
  9558. <tr>
  9559. <td>
  9560. <code>literal</code></br>
  9561. <em>
  9562. string
  9563. </em>
  9564. </td>
  9565. <td>
  9566. <em>(Optional)</em>
  9567. </td>
  9568. </tr>
  9569. </tbody>
  9570. </table>
  9571. <h3 id="external-secrets.io/v1.TemplateMergePolicy">TemplateMergePolicy
  9572. (<code>string</code> alias)</p></h3>
  9573. <p>
  9574. (<em>Appears on:</em>
  9575. <a href="#external-secrets.io/v1.ExternalSecretTemplate">ExternalSecretTemplate</a>)
  9576. </p>
  9577. <p>
  9578. </p>
  9579. <table>
  9580. <thead>
  9581. <tr>
  9582. <th>Value</th>
  9583. <th>Description</th>
  9584. </tr>
  9585. </thead>
  9586. <tbody><tr><td><p>&#34;Merge&#34;</p></td>
  9587. <td></td>
  9588. </tr><tr><td><p>&#34;Replace&#34;</p></td>
  9589. <td></td>
  9590. </tr></tbody>
  9591. </table>
  9592. <h3 id="external-secrets.io/v1.TemplateRef">TemplateRef
  9593. </h3>
  9594. <p>
  9595. (<em>Appears on:</em>
  9596. <a href="#external-secrets.io/v1.TemplateFrom">TemplateFrom</a>)
  9597. </p>
  9598. <p>
  9599. </p>
  9600. <table>
  9601. <thead>
  9602. <tr>
  9603. <th>Field</th>
  9604. <th>Description</th>
  9605. </tr>
  9606. </thead>
  9607. <tbody>
  9608. <tr>
  9609. <td>
  9610. <code>name</code></br>
  9611. <em>
  9612. string
  9613. </em>
  9614. </td>
  9615. <td>
  9616. <p>The name of the ConfigMap/Secret resource</p>
  9617. </td>
  9618. </tr>
  9619. <tr>
  9620. <td>
  9621. <code>items</code></br>
  9622. <em>
  9623. <a href="#external-secrets.io/v1.TemplateRefItem">
  9624. []TemplateRefItem
  9625. </a>
  9626. </em>
  9627. </td>
  9628. <td>
  9629. <p>A list of keys in the ConfigMap/Secret to use as templates for Secret data</p>
  9630. </td>
  9631. </tr>
  9632. </tbody>
  9633. </table>
  9634. <h3 id="external-secrets.io/v1.TemplateRefItem">TemplateRefItem
  9635. </h3>
  9636. <p>
  9637. (<em>Appears on:</em>
  9638. <a href="#external-secrets.io/v1.TemplateRef">TemplateRef</a>)
  9639. </p>
  9640. <p>
  9641. </p>
  9642. <table>
  9643. <thead>
  9644. <tr>
  9645. <th>Field</th>
  9646. <th>Description</th>
  9647. </tr>
  9648. </thead>
  9649. <tbody>
  9650. <tr>
  9651. <td>
  9652. <code>key</code></br>
  9653. <em>
  9654. string
  9655. </em>
  9656. </td>
  9657. <td>
  9658. <p>A key in the ConfigMap/Secret</p>
  9659. </td>
  9660. </tr>
  9661. <tr>
  9662. <td>
  9663. <code>templateAs</code></br>
  9664. <em>
  9665. <a href="#external-secrets.io/v1.TemplateScope">
  9666. TemplateScope
  9667. </a>
  9668. </em>
  9669. </td>
  9670. <td>
  9671. </td>
  9672. </tr>
  9673. </tbody>
  9674. </table>
  9675. <h3 id="external-secrets.io/v1.TemplateScope">TemplateScope
  9676. (<code>string</code> alias)</p></h3>
  9677. <p>
  9678. (<em>Appears on:</em>
  9679. <a href="#external-secrets.io/v1.TemplateRefItem">TemplateRefItem</a>)
  9680. </p>
  9681. <p>
  9682. </p>
  9683. <table>
  9684. <thead>
  9685. <tr>
  9686. <th>Value</th>
  9687. <th>Description</th>
  9688. </tr>
  9689. </thead>
  9690. <tbody><tr><td><p>&#34;KeysAndValues&#34;</p></td>
  9691. <td></td>
  9692. </tr><tr><td><p>&#34;Values&#34;</p></td>
  9693. <td></td>
  9694. </tr></tbody>
  9695. </table>
  9696. <h3 id="external-secrets.io/v1.TemplateTarget">TemplateTarget
  9697. (<code>string</code> alias)</p></h3>
  9698. <p>
  9699. (<em>Appears on:</em>
  9700. <a href="#external-secrets.io/v1.TemplateFrom">TemplateFrom</a>)
  9701. </p>
  9702. <p>
  9703. </p>
  9704. <table>
  9705. <thead>
  9706. <tr>
  9707. <th>Value</th>
  9708. <th>Description</th>
  9709. </tr>
  9710. </thead>
  9711. <tbody><tr><td><p>&#34;Annotations&#34;</p></td>
  9712. <td></td>
  9713. </tr><tr><td><p>&#34;Data&#34;</p></td>
  9714. <td></td>
  9715. </tr><tr><td><p>&#34;Labels&#34;</p></td>
  9716. <td></td>
  9717. </tr></tbody>
  9718. </table>
  9719. <h3 id="external-secrets.io/v1.TokenAuth">TokenAuth
  9720. </h3>
  9721. <p>
  9722. (<em>Appears on:</em>
  9723. <a href="#external-secrets.io/v1.KubernetesAuth">KubernetesAuth</a>)
  9724. </p>
  9725. <p>
  9726. </p>
  9727. <table>
  9728. <thead>
  9729. <tr>
  9730. <th>Field</th>
  9731. <th>Description</th>
  9732. </tr>
  9733. </thead>
  9734. <tbody>
  9735. <tr>
  9736. <td>
  9737. <code>bearerToken</code></br>
  9738. <em>
  9739. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  9740. External Secrets meta/v1.SecretKeySelector
  9741. </a>
  9742. </em>
  9743. </td>
  9744. <td>
  9745. </td>
  9746. </tr>
  9747. </tbody>
  9748. </table>
  9749. <h3 id="external-secrets.io/v1.UniversalAuthCredentials">UniversalAuthCredentials
  9750. </h3>
  9751. <p>
  9752. (<em>Appears on:</em>
  9753. <a href="#external-secrets.io/v1.InfisicalAuth">InfisicalAuth</a>)
  9754. </p>
  9755. <p>
  9756. </p>
  9757. <table>
  9758. <thead>
  9759. <tr>
  9760. <th>Field</th>
  9761. <th>Description</th>
  9762. </tr>
  9763. </thead>
  9764. <tbody>
  9765. <tr>
  9766. <td>
  9767. <code>clientId</code></br>
  9768. <em>
  9769. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  9770. External Secrets meta/v1.SecretKeySelector
  9771. </a>
  9772. </em>
  9773. </td>
  9774. <td>
  9775. </td>
  9776. </tr>
  9777. <tr>
  9778. <td>
  9779. <code>clientSecret</code></br>
  9780. <em>
  9781. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  9782. External Secrets meta/v1.SecretKeySelector
  9783. </a>
  9784. </em>
  9785. </td>
  9786. <td>
  9787. </td>
  9788. </tr>
  9789. </tbody>
  9790. </table>
  9791. <h3 id="external-secrets.io/v1.ValidationResult">ValidationResult
  9792. (<code>byte</code> alias)</p></h3>
  9793. <p>
  9794. </p>
  9795. <table>
  9796. <thead>
  9797. <tr>
  9798. <th>Value</th>
  9799. <th>Description</th>
  9800. </tr>
  9801. </thead>
  9802. <tbody><tr><td><p>2</p></td>
  9803. <td><p>Error indicates that there is a misconfiguration.</p>
  9804. </td>
  9805. </tr><tr><td><p>0</p></td>
  9806. <td><p>Ready indicates that the client is configured correctly
  9807. and can be used.</p>
  9808. </td>
  9809. </tr><tr><td><p>1</p></td>
  9810. <td><p>Unknown indicates that the client can be used
  9811. but information is missing and it can not be validated.</p>
  9812. </td>
  9813. </tr></tbody>
  9814. </table>
  9815. <h3 id="external-secrets.io/v1.VaultAppRole">VaultAppRole
  9816. </h3>
  9817. <p>
  9818. (<em>Appears on:</em>
  9819. <a href="#external-secrets.io/v1.VaultAuth">VaultAuth</a>)
  9820. </p>
  9821. <p>
  9822. <p>VaultAppRole authenticates with Vault using the App Role auth mechanism,
  9823. with the role and secret stored in a Kubernetes Secret resource.</p>
  9824. </p>
  9825. <table>
  9826. <thead>
  9827. <tr>
  9828. <th>Field</th>
  9829. <th>Description</th>
  9830. </tr>
  9831. </thead>
  9832. <tbody>
  9833. <tr>
  9834. <td>
  9835. <code>path</code></br>
  9836. <em>
  9837. string
  9838. </em>
  9839. </td>
  9840. <td>
  9841. <p>Path where the App Role authentication backend is mounted
  9842. in Vault, e.g: &ldquo;approle&rdquo;</p>
  9843. </td>
  9844. </tr>
  9845. <tr>
  9846. <td>
  9847. <code>roleId</code></br>
  9848. <em>
  9849. string
  9850. </em>
  9851. </td>
  9852. <td>
  9853. <em>(Optional)</em>
  9854. <p>RoleID configured in the App Role authentication backend when setting
  9855. up the authentication backend in Vault.</p>
  9856. </td>
  9857. </tr>
  9858. <tr>
  9859. <td>
  9860. <code>roleRef</code></br>
  9861. <em>
  9862. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  9863. External Secrets meta/v1.SecretKeySelector
  9864. </a>
  9865. </em>
  9866. </td>
  9867. <td>
  9868. <em>(Optional)</em>
  9869. <p>Reference to a key in a Secret that contains the App Role ID used
  9870. to authenticate with Vault.
  9871. The <code>key</code> field must be specified and denotes which entry within the Secret
  9872. resource is used as the app role id.</p>
  9873. </td>
  9874. </tr>
  9875. <tr>
  9876. <td>
  9877. <code>secretRef</code></br>
  9878. <em>
  9879. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  9880. External Secrets meta/v1.SecretKeySelector
  9881. </a>
  9882. </em>
  9883. </td>
  9884. <td>
  9885. <p>Reference to a key in a Secret that contains the App Role secret used
  9886. to authenticate with Vault.
  9887. The <code>key</code> field must be specified and denotes which entry within the Secret
  9888. resource is used as the app role secret.</p>
  9889. </td>
  9890. </tr>
  9891. </tbody>
  9892. </table>
  9893. <h3 id="external-secrets.io/v1.VaultAuth">VaultAuth
  9894. </h3>
  9895. <p>
  9896. (<em>Appears on:</em>
  9897. <a href="#external-secrets.io/v1.VaultProvider">VaultProvider</a>)
  9898. </p>
  9899. <p>
  9900. <p>VaultAuth is the configuration used to authenticate with a Vault server.
  9901. Only one of <code>tokenSecretRef</code>, <code>appRole</code>, <code>kubernetes</code>, <code>ldap</code>, <code>userPass</code>, <code>jwt</code> or <code>cert</code>
  9902. can be specified. A namespace to authenticate against can optionally be specified.</p>
  9903. </p>
  9904. <table>
  9905. <thead>
  9906. <tr>
  9907. <th>Field</th>
  9908. <th>Description</th>
  9909. </tr>
  9910. </thead>
  9911. <tbody>
  9912. <tr>
  9913. <td>
  9914. <code>namespace</code></br>
  9915. <em>
  9916. string
  9917. </em>
  9918. </td>
  9919. <td>
  9920. <em>(Optional)</em>
  9921. <p>Name of the vault namespace to authenticate to. This can be different than the namespace your secret is in.
  9922. Namespaces is a set of features within Vault Enterprise that allows
  9923. Vault environments to support Secure Multi-tenancy. e.g: &ldquo;ns1&rdquo;.
  9924. More about namespaces can be found here <a href="https://www.vaultproject.io/docs/enterprise/namespaces">https://www.vaultproject.io/docs/enterprise/namespaces</a>
  9925. This will default to Vault.Namespace field if set, or empty otherwise</p>
  9926. </td>
  9927. </tr>
  9928. <tr>
  9929. <td>
  9930. <code>tokenSecretRef</code></br>
  9931. <em>
  9932. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  9933. External Secrets meta/v1.SecretKeySelector
  9934. </a>
  9935. </em>
  9936. </td>
  9937. <td>
  9938. <em>(Optional)</em>
  9939. <p>TokenSecretRef authenticates with Vault by presenting a token.</p>
  9940. </td>
  9941. </tr>
  9942. <tr>
  9943. <td>
  9944. <code>appRole</code></br>
  9945. <em>
  9946. <a href="#external-secrets.io/v1.VaultAppRole">
  9947. VaultAppRole
  9948. </a>
  9949. </em>
  9950. </td>
  9951. <td>
  9952. <em>(Optional)</em>
  9953. <p>AppRole authenticates with Vault using the App Role auth mechanism,
  9954. with the role and secret stored in a Kubernetes Secret resource.</p>
  9955. </td>
  9956. </tr>
  9957. <tr>
  9958. <td>
  9959. <code>kubernetes</code></br>
  9960. <em>
  9961. <a href="#external-secrets.io/v1.VaultKubernetesAuth">
  9962. VaultKubernetesAuth
  9963. </a>
  9964. </em>
  9965. </td>
  9966. <td>
  9967. <em>(Optional)</em>
  9968. <p>Kubernetes authenticates with Vault by passing the ServiceAccount
  9969. token stored in the named Secret resource to the Vault server.</p>
  9970. </td>
  9971. </tr>
  9972. <tr>
  9973. <td>
  9974. <code>ldap</code></br>
  9975. <em>
  9976. <a href="#external-secrets.io/v1.VaultLdapAuth">
  9977. VaultLdapAuth
  9978. </a>
  9979. </em>
  9980. </td>
  9981. <td>
  9982. <em>(Optional)</em>
  9983. <p>Ldap authenticates with Vault by passing username/password pair using
  9984. the LDAP authentication method</p>
  9985. </td>
  9986. </tr>
  9987. <tr>
  9988. <td>
  9989. <code>jwt</code></br>
  9990. <em>
  9991. <a href="#external-secrets.io/v1.VaultJwtAuth">
  9992. VaultJwtAuth
  9993. </a>
  9994. </em>
  9995. </td>
  9996. <td>
  9997. <em>(Optional)</em>
  9998. <p>Jwt authenticates with Vault by passing role and JWT token using the
  9999. JWT/OIDC authentication method</p>
  10000. </td>
  10001. </tr>
  10002. <tr>
  10003. <td>
  10004. <code>cert</code></br>
  10005. <em>
  10006. <a href="#external-secrets.io/v1.VaultCertAuth">
  10007. VaultCertAuth
  10008. </a>
  10009. </em>
  10010. </td>
  10011. <td>
  10012. <em>(Optional)</em>
  10013. <p>Cert authenticates with TLS Certificates by passing client certificate, private key and ca certificate
  10014. Cert authentication method</p>
  10015. </td>
  10016. </tr>
  10017. <tr>
  10018. <td>
  10019. <code>iam</code></br>
  10020. <em>
  10021. <a href="#external-secrets.io/v1.VaultIamAuth">
  10022. VaultIamAuth
  10023. </a>
  10024. </em>
  10025. </td>
  10026. <td>
  10027. <em>(Optional)</em>
  10028. <p>Iam authenticates with vault by passing a special AWS request signed with AWS IAM credentials
  10029. AWS IAM authentication method</p>
  10030. </td>
  10031. </tr>
  10032. <tr>
  10033. <td>
  10034. <code>userPass</code></br>
  10035. <em>
  10036. <a href="#external-secrets.io/v1.VaultUserPassAuth">
  10037. VaultUserPassAuth
  10038. </a>
  10039. </em>
  10040. </td>
  10041. <td>
  10042. <em>(Optional)</em>
  10043. <p>UserPass authenticates with Vault by passing username/password pair</p>
  10044. </td>
  10045. </tr>
  10046. </tbody>
  10047. </table>
  10048. <h3 id="external-secrets.io/v1.VaultAwsAuth">VaultAwsAuth
  10049. </h3>
  10050. <p>
  10051. <p>VaultAwsAuth tells the controller how to do authentication with aws.
  10052. Only one of secretRef or jwt can be specified.
  10053. if none is specified the controller will try to load credentials from its own service account assuming it is IRSA enabled.</p>
  10054. </p>
  10055. <table>
  10056. <thead>
  10057. <tr>
  10058. <th>Field</th>
  10059. <th>Description</th>
  10060. </tr>
  10061. </thead>
  10062. <tbody>
  10063. <tr>
  10064. <td>
  10065. <code>secretRef</code></br>
  10066. <em>
  10067. <a href="#external-secrets.io/v1.VaultAwsAuthSecretRef">
  10068. VaultAwsAuthSecretRef
  10069. </a>
  10070. </em>
  10071. </td>
  10072. <td>
  10073. <em>(Optional)</em>
  10074. </td>
  10075. </tr>
  10076. <tr>
  10077. <td>
  10078. <code>jwt</code></br>
  10079. <em>
  10080. <a href="#external-secrets.io/v1.VaultAwsJWTAuth">
  10081. VaultAwsJWTAuth
  10082. </a>
  10083. </em>
  10084. </td>
  10085. <td>
  10086. <em>(Optional)</em>
  10087. </td>
  10088. </tr>
  10089. </tbody>
  10090. </table>
  10091. <h3 id="external-secrets.io/v1.VaultAwsAuthSecretRef">VaultAwsAuthSecretRef
  10092. </h3>
  10093. <p>
  10094. (<em>Appears on:</em>
  10095. <a href="#external-secrets.io/v1.VaultAwsAuth">VaultAwsAuth</a>,
  10096. <a href="#external-secrets.io/v1.VaultIamAuth">VaultIamAuth</a>)
  10097. </p>
  10098. <p>
  10099. <p>VaultAWSAuthSecretRef holds secret references for AWS credentials
  10100. both AccessKeyID and SecretAccessKey must be defined in order to properly authenticate.</p>
  10101. </p>
  10102. <table>
  10103. <thead>
  10104. <tr>
  10105. <th>Field</th>
  10106. <th>Description</th>
  10107. </tr>
  10108. </thead>
  10109. <tbody>
  10110. <tr>
  10111. <td>
  10112. <code>accessKeyIDSecretRef</code></br>
  10113. <em>
  10114. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  10115. External Secrets meta/v1.SecretKeySelector
  10116. </a>
  10117. </em>
  10118. </td>
  10119. <td>
  10120. <em>(Optional)</em>
  10121. <p>The AccessKeyID is used for authentication</p>
  10122. </td>
  10123. </tr>
  10124. <tr>
  10125. <td>
  10126. <code>secretAccessKeySecretRef</code></br>
  10127. <em>
  10128. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  10129. External Secrets meta/v1.SecretKeySelector
  10130. </a>
  10131. </em>
  10132. </td>
  10133. <td>
  10134. <em>(Optional)</em>
  10135. <p>The SecretAccessKey is used for authentication</p>
  10136. </td>
  10137. </tr>
  10138. <tr>
  10139. <td>
  10140. <code>sessionTokenSecretRef</code></br>
  10141. <em>
  10142. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  10143. External Secrets meta/v1.SecretKeySelector
  10144. </a>
  10145. </em>
  10146. </td>
  10147. <td>
  10148. <em>(Optional)</em>
  10149. <p>The SessionToken used for authentication
  10150. This must be defined if AccessKeyID and SecretAccessKey are temporary credentials
  10151. see: <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_use-resources.html">https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_use-resources.html</a></p>
  10152. </td>
  10153. </tr>
  10154. </tbody>
  10155. </table>
  10156. <h3 id="external-secrets.io/v1.VaultAwsJWTAuth">VaultAwsJWTAuth
  10157. </h3>
  10158. <p>
  10159. (<em>Appears on:</em>
  10160. <a href="#external-secrets.io/v1.VaultAwsAuth">VaultAwsAuth</a>,
  10161. <a href="#external-secrets.io/v1.VaultIamAuth">VaultIamAuth</a>)
  10162. </p>
  10163. <p>
  10164. <p>VaultAwsJWTAuth Authenticate against AWS using service account tokens.</p>
  10165. </p>
  10166. <table>
  10167. <thead>
  10168. <tr>
  10169. <th>Field</th>
  10170. <th>Description</th>
  10171. </tr>
  10172. </thead>
  10173. <tbody>
  10174. <tr>
  10175. <td>
  10176. <code>serviceAccountRef</code></br>
  10177. <em>
  10178. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  10179. External Secrets meta/v1.ServiceAccountSelector
  10180. </a>
  10181. </em>
  10182. </td>
  10183. <td>
  10184. <em>(Optional)</em>
  10185. </td>
  10186. </tr>
  10187. </tbody>
  10188. </table>
  10189. <h3 id="external-secrets.io/v1.VaultCertAuth">VaultCertAuth
  10190. </h3>
  10191. <p>
  10192. (<em>Appears on:</em>
  10193. <a href="#external-secrets.io/v1.VaultAuth">VaultAuth</a>)
  10194. </p>
  10195. <p>
  10196. <p>VaultCertAuth authenticates with Vault using the JWT/OIDC authentication
  10197. method, with the role name and token stored in a Kubernetes Secret resource.</p>
  10198. </p>
  10199. <table>
  10200. <thead>
  10201. <tr>
  10202. <th>Field</th>
  10203. <th>Description</th>
  10204. </tr>
  10205. </thead>
  10206. <tbody>
  10207. <tr>
  10208. <td>
  10209. <code>clientCert</code></br>
  10210. <em>
  10211. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  10212. External Secrets meta/v1.SecretKeySelector
  10213. </a>
  10214. </em>
  10215. </td>
  10216. <td>
  10217. <em>(Optional)</em>
  10218. <p>ClientCert is a certificate to authenticate using the Cert Vault
  10219. authentication method</p>
  10220. </td>
  10221. </tr>
  10222. <tr>
  10223. <td>
  10224. <code>secretRef</code></br>
  10225. <em>
  10226. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  10227. External Secrets meta/v1.SecretKeySelector
  10228. </a>
  10229. </em>
  10230. </td>
  10231. <td>
  10232. <em>(Optional)</em>
  10233. <p>SecretRef to a key in a Secret resource containing client private key to
  10234. authenticate with Vault using the Cert authentication method</p>
  10235. </td>
  10236. </tr>
  10237. </tbody>
  10238. </table>
  10239. <h3 id="external-secrets.io/v1.VaultClientTLS">VaultClientTLS
  10240. </h3>
  10241. <p>
  10242. (<em>Appears on:</em>
  10243. <a href="#external-secrets.io/v1.VaultProvider">VaultProvider</a>)
  10244. </p>
  10245. <p>
  10246. <p>VaultClientTLS is the configuration used for client side related TLS communication,
  10247. when the Vault server requires mutual authentication.</p>
  10248. </p>
  10249. <table>
  10250. <thead>
  10251. <tr>
  10252. <th>Field</th>
  10253. <th>Description</th>
  10254. </tr>
  10255. </thead>
  10256. <tbody>
  10257. <tr>
  10258. <td>
  10259. <code>certSecretRef</code></br>
  10260. <em>
  10261. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  10262. External Secrets meta/v1.SecretKeySelector
  10263. </a>
  10264. </em>
  10265. </td>
  10266. <td>
  10267. <em>(Optional)</em>
  10268. <p>CertSecretRef is a certificate added to the transport layer
  10269. when communicating with the Vault server.
  10270. If no key for the Secret is specified, external-secret will default to &lsquo;tls.crt&rsquo;.</p>
  10271. </td>
  10272. </tr>
  10273. <tr>
  10274. <td>
  10275. <code>keySecretRef</code></br>
  10276. <em>
  10277. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  10278. External Secrets meta/v1.SecretKeySelector
  10279. </a>
  10280. </em>
  10281. </td>
  10282. <td>
  10283. <em>(Optional)</em>
  10284. <p>KeySecretRef to a key in a Secret resource containing client private key
  10285. added to the transport layer when communicating with the Vault server.
  10286. If no key for the Secret is specified, external-secret will default to &lsquo;tls.key&rsquo;.</p>
  10287. </td>
  10288. </tr>
  10289. </tbody>
  10290. </table>
  10291. <h3 id="external-secrets.io/v1.VaultIamAuth">VaultIamAuth
  10292. </h3>
  10293. <p>
  10294. (<em>Appears on:</em>
  10295. <a href="#external-secrets.io/v1.VaultAuth">VaultAuth</a>)
  10296. </p>
  10297. <p>
  10298. <p>VaultIamAuth authenticates with Vault using the Vault&rsquo;s AWS IAM authentication method. Refer: <a href="https://developer.hashicorp.com/vault/docs/auth/aws">https://developer.hashicorp.com/vault/docs/auth/aws</a></p>
  10299. </p>
  10300. <table>
  10301. <thead>
  10302. <tr>
  10303. <th>Field</th>
  10304. <th>Description</th>
  10305. </tr>
  10306. </thead>
  10307. <tbody>
  10308. <tr>
  10309. <td>
  10310. <code>path</code></br>
  10311. <em>
  10312. string
  10313. </em>
  10314. </td>
  10315. <td>
  10316. <em>(Optional)</em>
  10317. <p>Path where the AWS auth method is enabled in Vault, e.g: &ldquo;aws&rdquo;</p>
  10318. </td>
  10319. </tr>
  10320. <tr>
  10321. <td>
  10322. <code>region</code></br>
  10323. <em>
  10324. string
  10325. </em>
  10326. </td>
  10327. <td>
  10328. <em>(Optional)</em>
  10329. <p>AWS region</p>
  10330. </td>
  10331. </tr>
  10332. <tr>
  10333. <td>
  10334. <code>role</code></br>
  10335. <em>
  10336. string
  10337. </em>
  10338. </td>
  10339. <td>
  10340. <em>(Optional)</em>
  10341. <p>This is the AWS role to be assumed before talking to vault</p>
  10342. </td>
  10343. </tr>
  10344. <tr>
  10345. <td>
  10346. <code>vaultRole</code></br>
  10347. <em>
  10348. string
  10349. </em>
  10350. </td>
  10351. <td>
  10352. <p>Vault Role. In vault, a role describes an identity with a set of permissions, groups, or policies you want to attach a user of the secrets engine</p>
  10353. </td>
  10354. </tr>
  10355. <tr>
  10356. <td>
  10357. <code>externalID</code></br>
  10358. <em>
  10359. string
  10360. </em>
  10361. </td>
  10362. <td>
  10363. <p>AWS External ID set on assumed IAM roles</p>
  10364. </td>
  10365. </tr>
  10366. <tr>
  10367. <td>
  10368. <code>vaultAwsIamServerID</code></br>
  10369. <em>
  10370. string
  10371. </em>
  10372. </td>
  10373. <td>
  10374. <em>(Optional)</em>
  10375. <p>X-Vault-AWS-IAM-Server-ID is an additional header used by Vault IAM auth method to mitigate against different types of replay attacks. More details here: <a href="https://developer.hashicorp.com/vault/docs/auth/aws">https://developer.hashicorp.com/vault/docs/auth/aws</a></p>
  10376. </td>
  10377. </tr>
  10378. <tr>
  10379. <td>
  10380. <code>secretRef</code></br>
  10381. <em>
  10382. <a href="#external-secrets.io/v1.VaultAwsAuthSecretRef">
  10383. VaultAwsAuthSecretRef
  10384. </a>
  10385. </em>
  10386. </td>
  10387. <td>
  10388. <em>(Optional)</em>
  10389. <p>Specify credentials in a Secret object</p>
  10390. </td>
  10391. </tr>
  10392. <tr>
  10393. <td>
  10394. <code>jwt</code></br>
  10395. <em>
  10396. <a href="#external-secrets.io/v1.VaultAwsJWTAuth">
  10397. VaultAwsJWTAuth
  10398. </a>
  10399. </em>
  10400. </td>
  10401. <td>
  10402. <em>(Optional)</em>
  10403. <p>Specify a service account with IRSA enabled</p>
  10404. </td>
  10405. </tr>
  10406. </tbody>
  10407. </table>
  10408. <h3 id="external-secrets.io/v1.VaultJwtAuth">VaultJwtAuth
  10409. </h3>
  10410. <p>
  10411. (<em>Appears on:</em>
  10412. <a href="#external-secrets.io/v1.VaultAuth">VaultAuth</a>)
  10413. </p>
  10414. <p>
  10415. <p>VaultJwtAuth authenticates with Vault using the JWT/OIDC authentication
  10416. method, with the role name and a token stored in a Kubernetes Secret resource or
  10417. a Kubernetes service account token retrieved via <code>TokenRequest</code>.</p>
  10418. </p>
  10419. <table>
  10420. <thead>
  10421. <tr>
  10422. <th>Field</th>
  10423. <th>Description</th>
  10424. </tr>
  10425. </thead>
  10426. <tbody>
  10427. <tr>
  10428. <td>
  10429. <code>path</code></br>
  10430. <em>
  10431. string
  10432. </em>
  10433. </td>
  10434. <td>
  10435. <p>Path where the JWT authentication backend is mounted
  10436. in Vault, e.g: &ldquo;jwt&rdquo;</p>
  10437. </td>
  10438. </tr>
  10439. <tr>
  10440. <td>
  10441. <code>role</code></br>
  10442. <em>
  10443. string
  10444. </em>
  10445. </td>
  10446. <td>
  10447. <em>(Optional)</em>
  10448. <p>Role is a JWT role to authenticate using the JWT/OIDC Vault
  10449. authentication method</p>
  10450. </td>
  10451. </tr>
  10452. <tr>
  10453. <td>
  10454. <code>secretRef</code></br>
  10455. <em>
  10456. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  10457. External Secrets meta/v1.SecretKeySelector
  10458. </a>
  10459. </em>
  10460. </td>
  10461. <td>
  10462. <em>(Optional)</em>
  10463. <p>Optional SecretRef that refers to a key in a Secret resource containing JWT token to
  10464. authenticate with Vault using the JWT/OIDC authentication method.</p>
  10465. </td>
  10466. </tr>
  10467. <tr>
  10468. <td>
  10469. <code>kubernetesServiceAccountToken</code></br>
  10470. <em>
  10471. <a href="#external-secrets.io/v1.VaultKubernetesServiceAccountTokenAuth">
  10472. VaultKubernetesServiceAccountTokenAuth
  10473. </a>
  10474. </em>
  10475. </td>
  10476. <td>
  10477. <em>(Optional)</em>
  10478. <p>Optional ServiceAccountToken specifies the Kubernetes service account for which to request
  10479. a token for with the <code>TokenRequest</code> API.</p>
  10480. </td>
  10481. </tr>
  10482. </tbody>
  10483. </table>
  10484. <h3 id="external-secrets.io/v1.VaultKVStoreVersion">VaultKVStoreVersion
  10485. (<code>string</code> alias)</p></h3>
  10486. <p>
  10487. (<em>Appears on:</em>
  10488. <a href="#external-secrets.io/v1.VaultProvider">VaultProvider</a>)
  10489. </p>
  10490. <p>
  10491. </p>
  10492. <table>
  10493. <thead>
  10494. <tr>
  10495. <th>Value</th>
  10496. <th>Description</th>
  10497. </tr>
  10498. </thead>
  10499. <tbody><tr><td><p>&#34;v1&#34;</p></td>
  10500. <td></td>
  10501. </tr><tr><td><p>&#34;v2&#34;</p></td>
  10502. <td></td>
  10503. </tr></tbody>
  10504. </table>
  10505. <h3 id="external-secrets.io/v1.VaultKubernetesAuth">VaultKubernetesAuth
  10506. </h3>
  10507. <p>
  10508. (<em>Appears on:</em>
  10509. <a href="#external-secrets.io/v1.VaultAuth">VaultAuth</a>)
  10510. </p>
  10511. <p>
  10512. <p>Authenticate against Vault using a Kubernetes ServiceAccount token stored in
  10513. a Secret.</p>
  10514. </p>
  10515. <table>
  10516. <thead>
  10517. <tr>
  10518. <th>Field</th>
  10519. <th>Description</th>
  10520. </tr>
  10521. </thead>
  10522. <tbody>
  10523. <tr>
  10524. <td>
  10525. <code>mountPath</code></br>
  10526. <em>
  10527. string
  10528. </em>
  10529. </td>
  10530. <td>
  10531. <p>Path where the Kubernetes authentication backend is mounted in Vault, e.g:
  10532. &ldquo;kubernetes&rdquo;</p>
  10533. </td>
  10534. </tr>
  10535. <tr>
  10536. <td>
  10537. <code>serviceAccountRef</code></br>
  10538. <em>
  10539. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  10540. External Secrets meta/v1.ServiceAccountSelector
  10541. </a>
  10542. </em>
  10543. </td>
  10544. <td>
  10545. <em>(Optional)</em>
  10546. <p>Optional service account field containing the name of a kubernetes ServiceAccount.
  10547. If the service account is specified, the service account secret token JWT will be used
  10548. for authenticating with Vault. If the service account selector is not supplied,
  10549. the secretRef will be used instead.</p>
  10550. </td>
  10551. </tr>
  10552. <tr>
  10553. <td>
  10554. <code>secretRef</code></br>
  10555. <em>
  10556. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  10557. External Secrets meta/v1.SecretKeySelector
  10558. </a>
  10559. </em>
  10560. </td>
  10561. <td>
  10562. <em>(Optional)</em>
  10563. <p>Optional secret field containing a Kubernetes ServiceAccount JWT used
  10564. for authenticating with Vault. If a name is specified without a key,
  10565. <code>token</code> is the default. If one is not specified, the one bound to
  10566. the controller will be used.</p>
  10567. </td>
  10568. </tr>
  10569. <tr>
  10570. <td>
  10571. <code>role</code></br>
  10572. <em>
  10573. string
  10574. </em>
  10575. </td>
  10576. <td>
  10577. <p>A required field containing the Vault Role to assume. A Role binds a
  10578. Kubernetes ServiceAccount with a set of Vault policies.</p>
  10579. </td>
  10580. </tr>
  10581. </tbody>
  10582. </table>
  10583. <h3 id="external-secrets.io/v1.VaultKubernetesServiceAccountTokenAuth">VaultKubernetesServiceAccountTokenAuth
  10584. </h3>
  10585. <p>
  10586. (<em>Appears on:</em>
  10587. <a href="#external-secrets.io/v1.VaultJwtAuth">VaultJwtAuth</a>)
  10588. </p>
  10589. <p>
  10590. <p>VaultKubernetesServiceAccountTokenAuth authenticates with Vault using a temporary
  10591. Kubernetes service account token retrieved by the <code>TokenRequest</code> API.</p>
  10592. </p>
  10593. <table>
  10594. <thead>
  10595. <tr>
  10596. <th>Field</th>
  10597. <th>Description</th>
  10598. </tr>
  10599. </thead>
  10600. <tbody>
  10601. <tr>
  10602. <td>
  10603. <code>serviceAccountRef</code></br>
  10604. <em>
  10605. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#ServiceAccountSelector">
  10606. External Secrets meta/v1.ServiceAccountSelector
  10607. </a>
  10608. </em>
  10609. </td>
  10610. <td>
  10611. <p>Service account field containing the name of a kubernetes ServiceAccount.</p>
  10612. </td>
  10613. </tr>
  10614. <tr>
  10615. <td>
  10616. <code>audiences</code></br>
  10617. <em>
  10618. []string
  10619. </em>
  10620. </td>
  10621. <td>
  10622. <em>(Optional)</em>
  10623. <p>Optional audiences field that will be used to request a temporary Kubernetes service
  10624. account token for the service account referenced by <code>serviceAccountRef</code>.
  10625. Defaults to a single audience <code>vault</code> it not specified.
  10626. Deprecated: use serviceAccountRef.Audiences instead</p>
  10627. </td>
  10628. </tr>
  10629. <tr>
  10630. <td>
  10631. <code>expirationSeconds</code></br>
  10632. <em>
  10633. int64
  10634. </em>
  10635. </td>
  10636. <td>
  10637. <em>(Optional)</em>
  10638. <p>Optional expiration time in seconds that will be used to request a temporary
  10639. Kubernetes service account token for the service account referenced by
  10640. <code>serviceAccountRef</code>.
  10641. Deprecated: this will be removed in the future.
  10642. Defaults to 10 minutes.</p>
  10643. </td>
  10644. </tr>
  10645. </tbody>
  10646. </table>
  10647. <h3 id="external-secrets.io/v1.VaultLdapAuth">VaultLdapAuth
  10648. </h3>
  10649. <p>
  10650. (<em>Appears on:</em>
  10651. <a href="#external-secrets.io/v1.VaultAuth">VaultAuth</a>)
  10652. </p>
  10653. <p>
  10654. <p>VaultLdapAuth authenticates with Vault using the LDAP authentication method,
  10655. with the username and password stored in a Kubernetes Secret resource.</p>
  10656. </p>
  10657. <table>
  10658. <thead>
  10659. <tr>
  10660. <th>Field</th>
  10661. <th>Description</th>
  10662. </tr>
  10663. </thead>
  10664. <tbody>
  10665. <tr>
  10666. <td>
  10667. <code>path</code></br>
  10668. <em>
  10669. string
  10670. </em>
  10671. </td>
  10672. <td>
  10673. <p>Path where the LDAP authentication backend is mounted
  10674. in Vault, e.g: &ldquo;ldap&rdquo;</p>
  10675. </td>
  10676. </tr>
  10677. <tr>
  10678. <td>
  10679. <code>username</code></br>
  10680. <em>
  10681. string
  10682. </em>
  10683. </td>
  10684. <td>
  10685. <p>Username is an LDAP username used to authenticate using the LDAP Vault
  10686. authentication method</p>
  10687. </td>
  10688. </tr>
  10689. <tr>
  10690. <td>
  10691. <code>secretRef</code></br>
  10692. <em>
  10693. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  10694. External Secrets meta/v1.SecretKeySelector
  10695. </a>
  10696. </em>
  10697. </td>
  10698. <td>
  10699. <em>(Optional)</em>
  10700. <p>SecretRef to a key in a Secret resource containing password for the LDAP
  10701. user used to authenticate with Vault using the LDAP authentication
  10702. method</p>
  10703. </td>
  10704. </tr>
  10705. </tbody>
  10706. </table>
  10707. <h3 id="external-secrets.io/v1.VaultProvider">VaultProvider
  10708. </h3>
  10709. <p>
  10710. (<em>Appears on:</em>
  10711. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  10712. </p>
  10713. <p>
  10714. <p>Configures an store to sync secrets using a HashiCorp Vault
  10715. KV backend.</p>
  10716. </p>
  10717. <table>
  10718. <thead>
  10719. <tr>
  10720. <th>Field</th>
  10721. <th>Description</th>
  10722. </tr>
  10723. </thead>
  10724. <tbody>
  10725. <tr>
  10726. <td>
  10727. <code>auth</code></br>
  10728. <em>
  10729. <a href="#external-secrets.io/v1.VaultAuth">
  10730. VaultAuth
  10731. </a>
  10732. </em>
  10733. </td>
  10734. <td>
  10735. <p>Auth configures how secret-manager authenticates with the Vault server.</p>
  10736. </td>
  10737. </tr>
  10738. <tr>
  10739. <td>
  10740. <code>server</code></br>
  10741. <em>
  10742. string
  10743. </em>
  10744. </td>
  10745. <td>
  10746. <p>Server is the connection address for the Vault server, e.g: &ldquo;<a href="https://vault.example.com:8200&quot;">https://vault.example.com:8200&rdquo;</a>.</p>
  10747. </td>
  10748. </tr>
  10749. <tr>
  10750. <td>
  10751. <code>path</code></br>
  10752. <em>
  10753. string
  10754. </em>
  10755. </td>
  10756. <td>
  10757. <em>(Optional)</em>
  10758. <p>Path is the mount path of the Vault KV backend endpoint, e.g:
  10759. &ldquo;secret&rdquo;. The v2 KV secret engine version specific &ldquo;/data&rdquo; path suffix
  10760. for fetching secrets from Vault is optional and will be appended
  10761. if not present in specified path.</p>
  10762. </td>
  10763. </tr>
  10764. <tr>
  10765. <td>
  10766. <code>version</code></br>
  10767. <em>
  10768. <a href="#external-secrets.io/v1.VaultKVStoreVersion">
  10769. VaultKVStoreVersion
  10770. </a>
  10771. </em>
  10772. </td>
  10773. <td>
  10774. <p>Version is the Vault KV secret engine version. This can be either &ldquo;v1&rdquo; or
  10775. &ldquo;v2&rdquo;. Version defaults to &ldquo;v2&rdquo;.</p>
  10776. </td>
  10777. </tr>
  10778. <tr>
  10779. <td>
  10780. <code>namespace</code></br>
  10781. <em>
  10782. string
  10783. </em>
  10784. </td>
  10785. <td>
  10786. <em>(Optional)</em>
  10787. <p>Name of the vault namespace. Namespaces is a set of features within Vault Enterprise that allows
  10788. Vault environments to support Secure Multi-tenancy. e.g: &ldquo;ns1&rdquo;.
  10789. More about namespaces can be found here <a href="https://www.vaultproject.io/docs/enterprise/namespaces">https://www.vaultproject.io/docs/enterprise/namespaces</a></p>
  10790. </td>
  10791. </tr>
  10792. <tr>
  10793. <td>
  10794. <code>caBundle</code></br>
  10795. <em>
  10796. []byte
  10797. </em>
  10798. </td>
  10799. <td>
  10800. <em>(Optional)</em>
  10801. <p>PEM encoded CA bundle used to validate Vault server certificate. Only used
  10802. if the Server URL is using HTTPS protocol. This parameter is ignored for
  10803. plain HTTP protocol connection. If not set the system root certificates
  10804. are used to validate the TLS connection.</p>
  10805. </td>
  10806. </tr>
  10807. <tr>
  10808. <td>
  10809. <code>tls</code></br>
  10810. <em>
  10811. <a href="#external-secrets.io/v1.VaultClientTLS">
  10812. VaultClientTLS
  10813. </a>
  10814. </em>
  10815. </td>
  10816. <td>
  10817. <em>(Optional)</em>
  10818. <p>The configuration used for client side related TLS communication, when the Vault server
  10819. requires mutual authentication. Only used if the Server URL is using HTTPS protocol.
  10820. This parameter is ignored for plain HTTP protocol connection.
  10821. It&rsquo;s worth noting this configuration is different from the &ldquo;TLS certificates auth method&rdquo;,
  10822. which is available under the <code>auth.cert</code> section.</p>
  10823. </td>
  10824. </tr>
  10825. <tr>
  10826. <td>
  10827. <code>caProvider</code></br>
  10828. <em>
  10829. <a href="#external-secrets.io/v1.CAProvider">
  10830. CAProvider
  10831. </a>
  10832. </em>
  10833. </td>
  10834. <td>
  10835. <em>(Optional)</em>
  10836. <p>The provider for the CA bundle to use to validate Vault server certificate.</p>
  10837. </td>
  10838. </tr>
  10839. <tr>
  10840. <td>
  10841. <code>readYourWrites</code></br>
  10842. <em>
  10843. bool
  10844. </em>
  10845. </td>
  10846. <td>
  10847. <em>(Optional)</em>
  10848. <p>ReadYourWrites ensures isolated read-after-write semantics by
  10849. providing discovered cluster replication states in each request.
  10850. More information about eventual consistency in Vault can be found here
  10851. <a href="https://www.vaultproject.io/docs/enterprise/consistency">https://www.vaultproject.io/docs/enterprise/consistency</a></p>
  10852. </td>
  10853. </tr>
  10854. <tr>
  10855. <td>
  10856. <code>forwardInconsistent</code></br>
  10857. <em>
  10858. bool
  10859. </em>
  10860. </td>
  10861. <td>
  10862. <em>(Optional)</em>
  10863. <p>ForwardInconsistent tells Vault to forward read-after-write requests to the Vault
  10864. leader instead of simply retrying within a loop. This can increase performance if
  10865. the option is enabled serverside.
  10866. <a href="https://www.vaultproject.io/docs/configuration/replication#allow_forwarding_via_header">https://www.vaultproject.io/docs/configuration/replication#allow_forwarding_via_header</a></p>
  10867. </td>
  10868. </tr>
  10869. <tr>
  10870. <td>
  10871. <code>headers</code></br>
  10872. <em>
  10873. map[string]string
  10874. </em>
  10875. </td>
  10876. <td>
  10877. <em>(Optional)</em>
  10878. <p>Headers to be added in Vault request</p>
  10879. </td>
  10880. </tr>
  10881. </tbody>
  10882. </table>
  10883. <h3 id="external-secrets.io/v1.VaultUserPassAuth">VaultUserPassAuth
  10884. </h3>
  10885. <p>
  10886. (<em>Appears on:</em>
  10887. <a href="#external-secrets.io/v1.VaultAuth">VaultAuth</a>)
  10888. </p>
  10889. <p>
  10890. <p>VaultUserPassAuth authenticates with Vault using UserPass authentication method,
  10891. with the username and password stored in a Kubernetes Secret resource.</p>
  10892. </p>
  10893. <table>
  10894. <thead>
  10895. <tr>
  10896. <th>Field</th>
  10897. <th>Description</th>
  10898. </tr>
  10899. </thead>
  10900. <tbody>
  10901. <tr>
  10902. <td>
  10903. <code>path</code></br>
  10904. <em>
  10905. string
  10906. </em>
  10907. </td>
  10908. <td>
  10909. <p>Path where the UserPassword authentication backend is mounted
  10910. in Vault, e.g: &ldquo;userpass&rdquo;</p>
  10911. </td>
  10912. </tr>
  10913. <tr>
  10914. <td>
  10915. <code>username</code></br>
  10916. <em>
  10917. string
  10918. </em>
  10919. </td>
  10920. <td>
  10921. <p>Username is a username used to authenticate using the UserPass Vault
  10922. authentication method</p>
  10923. </td>
  10924. </tr>
  10925. <tr>
  10926. <td>
  10927. <code>secretRef</code></br>
  10928. <em>
  10929. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  10930. External Secrets meta/v1.SecretKeySelector
  10931. </a>
  10932. </em>
  10933. </td>
  10934. <td>
  10935. <em>(Optional)</em>
  10936. <p>SecretRef to a key in a Secret resource containing password for the
  10937. user used to authenticate with Vault using the UserPass authentication
  10938. method</p>
  10939. </td>
  10940. </tr>
  10941. </tbody>
  10942. </table>
  10943. <h3 id="external-secrets.io/v1.WebhookCAProvider">WebhookCAProvider
  10944. </h3>
  10945. <p>
  10946. (<em>Appears on:</em>
  10947. <a href="#external-secrets.io/v1.WebhookProvider">WebhookProvider</a>)
  10948. </p>
  10949. <p>
  10950. <p>Defines a location to fetch the cert for the webhook provider from.</p>
  10951. </p>
  10952. <table>
  10953. <thead>
  10954. <tr>
  10955. <th>Field</th>
  10956. <th>Description</th>
  10957. </tr>
  10958. </thead>
  10959. <tbody>
  10960. <tr>
  10961. <td>
  10962. <code>type</code></br>
  10963. <em>
  10964. <a href="#external-secrets.io/v1.WebhookCAProviderType">
  10965. WebhookCAProviderType
  10966. </a>
  10967. </em>
  10968. </td>
  10969. <td>
  10970. <p>The type of provider to use such as &ldquo;Secret&rdquo;, or &ldquo;ConfigMap&rdquo;.</p>
  10971. </td>
  10972. </tr>
  10973. <tr>
  10974. <td>
  10975. <code>name</code></br>
  10976. <em>
  10977. string
  10978. </em>
  10979. </td>
  10980. <td>
  10981. <p>The name of the object located at the provider type.</p>
  10982. </td>
  10983. </tr>
  10984. <tr>
  10985. <td>
  10986. <code>key</code></br>
  10987. <em>
  10988. string
  10989. </em>
  10990. </td>
  10991. <td>
  10992. <p>The key where the CA certificate can be found in the Secret or ConfigMap.</p>
  10993. </td>
  10994. </tr>
  10995. <tr>
  10996. <td>
  10997. <code>namespace</code></br>
  10998. <em>
  10999. string
  11000. </em>
  11001. </td>
  11002. <td>
  11003. <em>(Optional)</em>
  11004. <p>The namespace the Provider type is in.</p>
  11005. </td>
  11006. </tr>
  11007. </tbody>
  11008. </table>
  11009. <h3 id="external-secrets.io/v1.WebhookCAProviderType">WebhookCAProviderType
  11010. (<code>string</code> alias)</p></h3>
  11011. <p>
  11012. (<em>Appears on:</em>
  11013. <a href="#external-secrets.io/v1.WebhookCAProvider">WebhookCAProvider</a>)
  11014. </p>
  11015. <p>
  11016. </p>
  11017. <table>
  11018. <thead>
  11019. <tr>
  11020. <th>Value</th>
  11021. <th>Description</th>
  11022. </tr>
  11023. </thead>
  11024. <tbody><tr><td><p>&#34;ConfigMap&#34;</p></td>
  11025. <td></td>
  11026. </tr><tr><td><p>&#34;Secret&#34;</p></td>
  11027. <td></td>
  11028. </tr></tbody>
  11029. </table>
  11030. <h3 id="external-secrets.io/v1.WebhookProvider">WebhookProvider
  11031. </h3>
  11032. <p>
  11033. (<em>Appears on:</em>
  11034. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  11035. </p>
  11036. <p>
  11037. <p>WebHookProvider Configures an store to sync secrets from simple web apis.</p>
  11038. </p>
  11039. <table>
  11040. <thead>
  11041. <tr>
  11042. <th>Field</th>
  11043. <th>Description</th>
  11044. </tr>
  11045. </thead>
  11046. <tbody>
  11047. <tr>
  11048. <td>
  11049. <code>method</code></br>
  11050. <em>
  11051. string
  11052. </em>
  11053. </td>
  11054. <td>
  11055. <p>Webhook Method</p>
  11056. </td>
  11057. </tr>
  11058. <tr>
  11059. <td>
  11060. <code>url</code></br>
  11061. <em>
  11062. string
  11063. </em>
  11064. </td>
  11065. <td>
  11066. <p>Webhook url to call</p>
  11067. </td>
  11068. </tr>
  11069. <tr>
  11070. <td>
  11071. <code>headers</code></br>
  11072. <em>
  11073. map[string]string
  11074. </em>
  11075. </td>
  11076. <td>
  11077. <em>(Optional)</em>
  11078. <p>Headers</p>
  11079. </td>
  11080. </tr>
  11081. <tr>
  11082. <td>
  11083. <code>auth</code></br>
  11084. <em>
  11085. <a href="#external-secrets.io/v1.AuthorizationProtocol">
  11086. AuthorizationProtocol
  11087. </a>
  11088. </em>
  11089. </td>
  11090. <td>
  11091. <em>(Optional)</em>
  11092. <p>Auth specifies a authorization protocol. Only one protocol may be set.</p>
  11093. </td>
  11094. </tr>
  11095. <tr>
  11096. <td>
  11097. <code>body</code></br>
  11098. <em>
  11099. string
  11100. </em>
  11101. </td>
  11102. <td>
  11103. <em>(Optional)</em>
  11104. <p>Body</p>
  11105. </td>
  11106. </tr>
  11107. <tr>
  11108. <td>
  11109. <code>timeout</code></br>
  11110. <em>
  11111. <a href="https://pkg.go.dev/k8s.io/apimachinery/pkg/apis/meta/v1#Duration">
  11112. Kubernetes meta/v1.Duration
  11113. </a>
  11114. </em>
  11115. </td>
  11116. <td>
  11117. <em>(Optional)</em>
  11118. <p>Timeout</p>
  11119. </td>
  11120. </tr>
  11121. <tr>
  11122. <td>
  11123. <code>result</code></br>
  11124. <em>
  11125. <a href="#external-secrets.io/v1.WebhookResult">
  11126. WebhookResult
  11127. </a>
  11128. </em>
  11129. </td>
  11130. <td>
  11131. <p>Result formatting</p>
  11132. </td>
  11133. </tr>
  11134. <tr>
  11135. <td>
  11136. <code>secrets</code></br>
  11137. <em>
  11138. <a href="#external-secrets.io/v1.WebhookSecret">
  11139. []WebhookSecret
  11140. </a>
  11141. </em>
  11142. </td>
  11143. <td>
  11144. <em>(Optional)</em>
  11145. <p>Secrets to fill in templates
  11146. These secrets will be passed to the templating function as key value pairs under the given name</p>
  11147. </td>
  11148. </tr>
  11149. <tr>
  11150. <td>
  11151. <code>caBundle</code></br>
  11152. <em>
  11153. []byte
  11154. </em>
  11155. </td>
  11156. <td>
  11157. <em>(Optional)</em>
  11158. <p>PEM encoded CA bundle used to validate webhook server certificate. Only used
  11159. if the Server URL is using HTTPS protocol. This parameter is ignored for
  11160. plain HTTP protocol connection. If not set the system root certificates
  11161. are used to validate the TLS connection.</p>
  11162. </td>
  11163. </tr>
  11164. <tr>
  11165. <td>
  11166. <code>caProvider</code></br>
  11167. <em>
  11168. <a href="#external-secrets.io/v1.WebhookCAProvider">
  11169. WebhookCAProvider
  11170. </a>
  11171. </em>
  11172. </td>
  11173. <td>
  11174. <em>(Optional)</em>
  11175. <p>The provider for the CA bundle to use to validate webhook server certificate.</p>
  11176. </td>
  11177. </tr>
  11178. </tbody>
  11179. </table>
  11180. <h3 id="external-secrets.io/v1.WebhookResult">WebhookResult
  11181. </h3>
  11182. <p>
  11183. (<em>Appears on:</em>
  11184. <a href="#external-secrets.io/v1.WebhookProvider">WebhookProvider</a>)
  11185. </p>
  11186. <p>
  11187. </p>
  11188. <table>
  11189. <thead>
  11190. <tr>
  11191. <th>Field</th>
  11192. <th>Description</th>
  11193. </tr>
  11194. </thead>
  11195. <tbody>
  11196. <tr>
  11197. <td>
  11198. <code>jsonPath</code></br>
  11199. <em>
  11200. string
  11201. </em>
  11202. </td>
  11203. <td>
  11204. <em>(Optional)</em>
  11205. <p>Json path of return value</p>
  11206. </td>
  11207. </tr>
  11208. </tbody>
  11209. </table>
  11210. <h3 id="external-secrets.io/v1.WebhookSecret">WebhookSecret
  11211. </h3>
  11212. <p>
  11213. (<em>Appears on:</em>
  11214. <a href="#external-secrets.io/v1.WebhookProvider">WebhookProvider</a>)
  11215. </p>
  11216. <p>
  11217. </p>
  11218. <table>
  11219. <thead>
  11220. <tr>
  11221. <th>Field</th>
  11222. <th>Description</th>
  11223. </tr>
  11224. </thead>
  11225. <tbody>
  11226. <tr>
  11227. <td>
  11228. <code>name</code></br>
  11229. <em>
  11230. string
  11231. </em>
  11232. </td>
  11233. <td>
  11234. <p>Name of this secret in templates</p>
  11235. </td>
  11236. </tr>
  11237. <tr>
  11238. <td>
  11239. <code>secretRef</code></br>
  11240. <em>
  11241. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  11242. External Secrets meta/v1.SecretKeySelector
  11243. </a>
  11244. </em>
  11245. </td>
  11246. <td>
  11247. <p>Secret ref to fill in credentials</p>
  11248. </td>
  11249. </tr>
  11250. </tbody>
  11251. </table>
  11252. <h3 id="external-secrets.io/v1.YandexCertificateManagerAuth">YandexCertificateManagerAuth
  11253. </h3>
  11254. <p>
  11255. (<em>Appears on:</em>
  11256. <a href="#external-secrets.io/v1.YandexCertificateManagerProvider">YandexCertificateManagerProvider</a>)
  11257. </p>
  11258. <p>
  11259. </p>
  11260. <table>
  11261. <thead>
  11262. <tr>
  11263. <th>Field</th>
  11264. <th>Description</th>
  11265. </tr>
  11266. </thead>
  11267. <tbody>
  11268. <tr>
  11269. <td>
  11270. <code>authorizedKeySecretRef</code></br>
  11271. <em>
  11272. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  11273. External Secrets meta/v1.SecretKeySelector
  11274. </a>
  11275. </em>
  11276. </td>
  11277. <td>
  11278. <em>(Optional)</em>
  11279. <p>The authorized key used for authentication</p>
  11280. </td>
  11281. </tr>
  11282. </tbody>
  11283. </table>
  11284. <h3 id="external-secrets.io/v1.YandexCertificateManagerCAProvider">YandexCertificateManagerCAProvider
  11285. </h3>
  11286. <p>
  11287. (<em>Appears on:</em>
  11288. <a href="#external-secrets.io/v1.YandexCertificateManagerProvider">YandexCertificateManagerProvider</a>)
  11289. </p>
  11290. <p>
  11291. </p>
  11292. <table>
  11293. <thead>
  11294. <tr>
  11295. <th>Field</th>
  11296. <th>Description</th>
  11297. </tr>
  11298. </thead>
  11299. <tbody>
  11300. <tr>
  11301. <td>
  11302. <code>certSecretRef</code></br>
  11303. <em>
  11304. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  11305. External Secrets meta/v1.SecretKeySelector
  11306. </a>
  11307. </em>
  11308. </td>
  11309. <td>
  11310. </td>
  11311. </tr>
  11312. </tbody>
  11313. </table>
  11314. <h3 id="external-secrets.io/v1.YandexCertificateManagerProvider">YandexCertificateManagerProvider
  11315. </h3>
  11316. <p>
  11317. (<em>Appears on:</em>
  11318. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  11319. </p>
  11320. <p>
  11321. <p>YandexCertificateManagerProvider Configures a store to sync secrets using the Yandex Certificate Manager provider.</p>
  11322. </p>
  11323. <table>
  11324. <thead>
  11325. <tr>
  11326. <th>Field</th>
  11327. <th>Description</th>
  11328. </tr>
  11329. </thead>
  11330. <tbody>
  11331. <tr>
  11332. <td>
  11333. <code>apiEndpoint</code></br>
  11334. <em>
  11335. string
  11336. </em>
  11337. </td>
  11338. <td>
  11339. <em>(Optional)</em>
  11340. <p>Yandex.Cloud API endpoint (e.g. &lsquo;api.cloud.yandex.net:443&rsquo;)</p>
  11341. </td>
  11342. </tr>
  11343. <tr>
  11344. <td>
  11345. <code>auth</code></br>
  11346. <em>
  11347. <a href="#external-secrets.io/v1.YandexCertificateManagerAuth">
  11348. YandexCertificateManagerAuth
  11349. </a>
  11350. </em>
  11351. </td>
  11352. <td>
  11353. <p>Auth defines the information necessary to authenticate against Yandex Certificate Manager</p>
  11354. </td>
  11355. </tr>
  11356. <tr>
  11357. <td>
  11358. <code>caProvider</code></br>
  11359. <em>
  11360. <a href="#external-secrets.io/v1.YandexCertificateManagerCAProvider">
  11361. YandexCertificateManagerCAProvider
  11362. </a>
  11363. </em>
  11364. </td>
  11365. <td>
  11366. <em>(Optional)</em>
  11367. <p>The provider for the CA bundle to use to validate Yandex.Cloud server certificate.</p>
  11368. </td>
  11369. </tr>
  11370. </tbody>
  11371. </table>
  11372. <h3 id="external-secrets.io/v1.YandexLockboxAuth">YandexLockboxAuth
  11373. </h3>
  11374. <p>
  11375. (<em>Appears on:</em>
  11376. <a href="#external-secrets.io/v1.YandexLockboxProvider">YandexLockboxProvider</a>)
  11377. </p>
  11378. <p>
  11379. </p>
  11380. <table>
  11381. <thead>
  11382. <tr>
  11383. <th>Field</th>
  11384. <th>Description</th>
  11385. </tr>
  11386. </thead>
  11387. <tbody>
  11388. <tr>
  11389. <td>
  11390. <code>authorizedKeySecretRef</code></br>
  11391. <em>
  11392. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  11393. External Secrets meta/v1.SecretKeySelector
  11394. </a>
  11395. </em>
  11396. </td>
  11397. <td>
  11398. <em>(Optional)</em>
  11399. <p>The authorized key used for authentication</p>
  11400. </td>
  11401. </tr>
  11402. </tbody>
  11403. </table>
  11404. <h3 id="external-secrets.io/v1.YandexLockboxCAProvider">YandexLockboxCAProvider
  11405. </h3>
  11406. <p>
  11407. (<em>Appears on:</em>
  11408. <a href="#external-secrets.io/v1.YandexLockboxProvider">YandexLockboxProvider</a>)
  11409. </p>
  11410. <p>
  11411. </p>
  11412. <table>
  11413. <thead>
  11414. <tr>
  11415. <th>Field</th>
  11416. <th>Description</th>
  11417. </tr>
  11418. </thead>
  11419. <tbody>
  11420. <tr>
  11421. <td>
  11422. <code>certSecretRef</code></br>
  11423. <em>
  11424. <a href="https://pkg.go.dev/github.com/external-secrets/external-secrets/apis/meta/v1#SecretKeySelector">
  11425. External Secrets meta/v1.SecretKeySelector
  11426. </a>
  11427. </em>
  11428. </td>
  11429. <td>
  11430. </td>
  11431. </tr>
  11432. </tbody>
  11433. </table>
  11434. <h3 id="external-secrets.io/v1.YandexLockboxProvider">YandexLockboxProvider
  11435. </h3>
  11436. <p>
  11437. (<em>Appears on:</em>
  11438. <a href="#external-secrets.io/v1.SecretStoreProvider">SecretStoreProvider</a>)
  11439. </p>
  11440. <p>
  11441. <p>YandexLockboxProvider Configures a store to sync secrets using the Yandex Lockbox provider.</p>
  11442. </p>
  11443. <table>
  11444. <thead>
  11445. <tr>
  11446. <th>Field</th>
  11447. <th>Description</th>
  11448. </tr>
  11449. </thead>
  11450. <tbody>
  11451. <tr>
  11452. <td>
  11453. <code>apiEndpoint</code></br>
  11454. <em>
  11455. string
  11456. </em>
  11457. </td>
  11458. <td>
  11459. <em>(Optional)</em>
  11460. <p>Yandex.Cloud API endpoint (e.g. &lsquo;api.cloud.yandex.net:443&rsquo;)</p>
  11461. </td>
  11462. </tr>
  11463. <tr>
  11464. <td>
  11465. <code>auth</code></br>
  11466. <em>
  11467. <a href="#external-secrets.io/v1.YandexLockboxAuth">
  11468. YandexLockboxAuth
  11469. </a>
  11470. </em>
  11471. </td>
  11472. <td>
  11473. <p>Auth defines the information necessary to authenticate against Yandex Lockbox</p>
  11474. </td>
  11475. </tr>
  11476. <tr>
  11477. <td>
  11478. <code>caProvider</code></br>
  11479. <em>
  11480. <a href="#external-secrets.io/v1.YandexLockboxCAProvider">
  11481. YandexLockboxCAProvider
  11482. </a>
  11483. </em>
  11484. </td>
  11485. <td>
  11486. <em>(Optional)</em>
  11487. <p>The provider for the CA bundle to use to validate Yandex.Cloud server certificate.</p>
  11488. </td>
  11489. </tr>
  11490. </tbody>
  11491. </table>
  11492. <hr/>
  11493. <p><em>
  11494. Generated with <code>gen-crd-api-reference-docs</code>.
  11495. </em></p>
  11496. </article>
  11497. </div>
  11498. <script>var target=document.getElementById(location.hash.slice(1));target&&target.name&&(target.checked=target.name.startsWith("__tabbed_"))</script>
  11499. </div>
  11500. </main>
  11501. <img referrerpolicy="no-referrer-when-downgrade" src="https://static.scarf.sh/a.png?x-pxid=6658a9eb-067d-49f1-94f2-b8b00f21451e" alt=""/>
  11502. <footer class="md-footer">
  11503. <div class="md-footer-meta md-typeset">
  11504. <div class="md-footer-meta__inner md-grid">
  11505. <div class="md-copyright">
  11506. <div class="md-copyright__highlight">
  11507. &copy; 2025 The external-secrets Authors.<br/>
  11508. &copy; 2025 The Linux Foundation. All rights reserved.<br/><br/>
  11509. The Linux Foundation has registered trademarks and uses trademarks.<br/>
  11510. For a list of trademarks of The Linux Foundation, please see our <a href="https://www.linuxfoundation.org/trademark-usage/">Trademark Usage page</a>.
  11511. </div>
  11512. Made with
  11513. <a href="https://squidfunk.github.io/mkdocs-material/" target="_blank" rel="noopener">
  11514. Material for MkDocs
  11515. </a>
  11516. </div>
  11517. </div>
  11518. </div>
  11519. </footer>
  11520. </div>
  11521. <div class="md-dialog" data-md-component="dialog">
  11522. <div class="md-dialog__inner md-typeset"></div>
  11523. </div>
  11524. <script id="__config" type="application/json">{"base": "../..", "features": ["navigation.tabs", "navigation.indexes", "navigation.expand"], "search": "../../assets/javascripts/workers/search.d50fe291.min.js", "tags": null, "translations": {"clipboard.copied": "Copied to clipboard", "clipboard.copy": "Copy to clipboard", "search.result.more.one": "1 more on this page", "search.result.more.other": "# more on this page", "search.result.none": "No matching documents", "search.result.one": "1 matching document", "search.result.other": "# matching documents", "search.result.placeholder": "Type to start searching", "search.result.term.missing": "Missing", "select.version": "Select version"}, "version": {"provider": "mike"}}</script>
  11525. <script src="../../assets/javascripts/bundle.13a4f30d.min.js"></script>
  11526. </body>
  11527. </html>